From 6bdd4b8316b70d63826e5b983978cc6b76390e86 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 18 Jun 2026 11:53:11 +0200 Subject: [PATCH] feat: dms config copying --- setup.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.sh b/setup.sh index c55fa6d..d9a9f21 100755 --- a/setup.sh +++ b/setup.sh @@ -37,3 +37,11 @@ rm -rf ~/.config/ags rm -rf ~/.config/astal cp -r ./config/* ~/.config + +confirmation="" +read -p "Use repo version of DMS config? (y/N) " confirmation +if [[ "$confirmation" == "y" ]]; then + cp -r ./dms ~/.config/DankMaterialShell/ +else + cp -r ~/.config/DankMaterialShell/ ./dms +fi