aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2023-09-20 07:51:55 +0200
committerPatrick Spek <p.spek@tyil.nl>2023-09-20 07:51:55 +0200
commit90bd55a1abc074e57cfc12d97f1c8c789bb91db0 (patch)
tree2edb7b466aafbb9d85bc88a9fe428f8414fde5c2 /.local
parentda1fafa505615d759e97d526326a152762a40573 (diff)
Fix non-POSIX if check
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/notify-send2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/notify-send b/.local/bin/notify-send
index 8dc67a0..2601e55 100755
--- a/.local/bin/notify-send
+++ b/.local/bin/notify-send
@@ -52,7 +52,7 @@ main()
"$((${timeout:-10} * 1000))" \
> /dev/null
- if [[ -z "$silent" ]]
+ if [ -z "$silent" ]
then
printf "%d\n" "$id"
fi