summaryrefslogtreecommitdiff
path: root/scripts/swall
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-08-30 01:04:36 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-08-30 01:04:36 +0400
commit2762a6212e089ca1b3e1a4e241a5be299c7c1dee (patch)
treec209bbe2314f28c26f88793a7e1e0678df8f69ab /scripts/swall
parentc6b35b5782c17834f590957c9169267f8f26ed06 (diff)
fix(scripts): update file paths for new directory layout
Diffstat (limited to 'scripts/swall')
-rwxr-xr-xscripts/swall8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/swall b/scripts/swall
index 2588b4b..8e5ffb6 100755
--- a/scripts/swall
+++ b/scripts/swall
@@ -27,7 +27,13 @@ fi
while getopts "hcd:" option; do
case "${option}" in
- c) run "xwallpaper --clear" ;;
+ c)
+ #FIXME: use `run` function
+ killall picom
+ xwallpaper --clear
+ picom &
+ exit 0
+ ;;
d) input="${OPTARG}" ;;