diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-08-30 01:04:36 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-08-30 01:04:36 +0400 |
commit | 2762a6212e089ca1b3e1a4e241a5be299c7c1dee (patch) | |
tree | c209bbe2314f28c26f88793a7e1e0678df8f69ab /scripts/swall | |
parent | c6b35b5782c17834f590957c9169267f8f26ed06 (diff) |
fix(scripts): update file paths for new directory layout
Diffstat (limited to 'scripts/swall')
-rwxr-xr-x | scripts/swall | 8 |
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}" ;; |