diff options
| author | Syndamia <kamen@syndamia.com> | 2022-09-05 21:39:28 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2022-09-05 21:39:28 +0300 |
| commit | ee3518fb810ba6df3945f5bc8196135b17233c81 (patch) | |
| tree | c8fe328d07b3391daff0ad400f944b3ed31a575e /.a/sys | |
| parent | 1e46c55a4ccc31655b478ae4a1a97fc78545cbd7 (diff) | |
| download | dotfiles-ee3518fb810ba6df3945f5bc8196135b17233c81.tar dotfiles-ee3518fb810ba6df3945f5bc8196135b17233c81.tar.gz dotfiles-ee3518fb810ba6df3945f5bc8196135b17233c81.zip | |
Fixed loop on on-wm-logout
Diffstat (limited to '.a/sys')
| -rwxr-xr-x | .a/sys/on-wm-logout.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.a/sys/on-wm-logout.sh b/.a/sys/on-wm-logout.sh index 90ebab2..279c903 100755 --- a/.a/sys/on-wm-logout.sh +++ b/.a/sys/on-wm-logout.sh @@ -3,6 +3,6 @@ # Gracefully close certain programs grace=(brave) -for $app in $grace; do +for app in $grace; do timeout 5 pkill -TERM $app done |
