diff options
| author | stkhan <personal@slickd.xyz> | 2023-06-08 22:09:38 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2023-06-08 22:09:38 -0500 |
| commit | db14a74d6a24f0c4402ffc953cbe372cc408ebf8 (patch) | |
| tree | 16810ad9b7d60ed2bc4762f2ef1315c7dec8c94d | |
| parent | 3574936b66b398ab2d3d671c0df909740bed61c5 (diff) | |
Change modes to profiles and clean
| -rw-r--r-- | profiles/master/Makefile (renamed from modes/master/Makefile) | 0 | ||||
| -rw-r--r-- | profiles/master/blocks.h (renamed from modes/master/blocks.h) | 0 | ||||
| -rw-r--r-- | profiles/master/keys.h (renamed from modes/master/keys.h) | 0 | ||||
| -rwxr-xr-x | scripts/cp.sh | 4 | ||||
| -rwxr-xr-x | scripts/set_theme.sh | 6 |
5 files changed, 5 insertions, 5 deletions
diff --git a/modes/master/Makefile b/profiles/master/Makefile index 55b881e..55b881e 100644 --- a/modes/master/Makefile +++ b/profiles/master/Makefile diff --git a/modes/master/blocks.h b/profiles/master/blocks.h index 2b7566c..2b7566c 100644 --- a/modes/master/blocks.h +++ b/profiles/master/blocks.h diff --git a/modes/master/keys.h b/profiles/master/keys.h index 2277b77..2277b77 100644 --- a/modes/master/keys.h +++ b/profiles/master/keys.h diff --git a/scripts/cp.sh b/scripts/cp.sh index e460aeb..2722351 100755 --- a/scripts/cp.sh +++ b/scripts/cp.sh @@ -1,6 +1,6 @@ #!/bin/bash source ./.config -cp ./modes/$MODE/keys.h ./wm/dwm-6.4/ -cp ./modes/$MODE/blocks.h ./wm/dwmblocks/ +cp ./profiles/$PROFILE/keys.h ./wm/dwm-6.4/ +cp ./profiles/$PROFILE/blocks.h ./wm/dwmblocks/ cp ./theme/$THEME/$THEME.png ~/.config/wallpaper.png cp ./theme/$THEME/colors.h . diff --git a/scripts/set_theme.sh b/scripts/set_theme.sh index fedc758..2022848 100755 --- a/scripts/set_theme.sh +++ b/scripts/set_theme.sh @@ -1,8 +1,8 @@ #!/bin/sh -echo "Choose a mode (type master if unsure): "; ls ./modes/ -read mode -echo "MODE=$mode" >> ./.config +echo "Choose a mode (type master if unsure): "; ls ./profiles/ +read profile +echo "PROFILE=$profile" >> ./.config echo "Choose a theme:" && ls ./theme/ read theme |