summaryrefslogtreecommitdiff
path: root/.a/sys
diff options
context:
space:
mode:
Diffstat (limited to '.a/sys')
-rwxr-xr-x.a/sys/on-wm-logout.sh2
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