diff options
author | sinanmohd <sinan@firemail.cc> | 2023-08-16 19:01:07 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-08-16 19:01:30 +0530 |
commit | dc1e0aabb05e5900b76b90846800c203b289e49a (patch) | |
tree | cb9925588d31dcd6b5a58cf519f0de4f01007d2e /.local/bin | |
parent | f54f031bdce6da4a43ea04039b55a6eb0c2da932 (diff) |
cwall: use SIGKILL to kill swaybg for now
swaybg seems to hang on SIGTERM sometimes
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/cwall | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/cwall b/.local/bin/cwall index ad985a9..c20abb3 100755 --- a/.local/bin/cwall +++ b/.local/bin/cwall @@ -76,7 +76,7 @@ updatewall() cp "$1" "$bgimg" [ -s "$bgpid" ] && - kill "$(cat "$bgpid")" + kill -9 "$(cat "$bgpid")" swaybg --mode fill --image "$bgimg" > /dev/null 2>&1 & echo $! > "$bgpid" } |