diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-26 13:05:26 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-26 13:05:26 +0400 |
commit | 0e49f7bd40521b999a7d7243fc465a0476a50267 (patch) | |
tree | fc9a9656c874e8f33f47f1d231ee2ae7d8cd835b /scripts/nsend | |
parent | 0a66a3eded215272aa10ac701deb30b1efb9392b (diff) |
fix(nsend): call dunst instead of printing to stdout
Diffstat (limited to 'scripts/nsend')
-rwxr-xr-x | scripts/nsend | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/nsend b/scripts/nsend index 3d28683..ae5a382 100755 --- a/scripts/nsend +++ b/scripts/nsend @@ -20,7 +20,8 @@ case "${1}" in "-s") [ "${#}" -gt 3 ] && invalid_use - echo $(printf 'notify-send "%s" "%s"' "${1}" "${2}") + shift + eval $(printf 'notify-send "%s" "%s"' "${1}" "${2}") exit 0 ;; |