diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 00:47:12 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-19 00:47:12 +0400 |
commit | 0d7f069d02e5ec38057cfbf7f06dd6f8b944a78e (patch) | |
tree | 1b81d317ff92b4e69c3528a8996c7872c048c7e1 | |
parent | 4b772b29644c0be670cededdea6732d6f2bc642a (diff) |
fix: wrap notify-send arguments in quotes to preserve spacing
-rwxr-xr-x | scripts/nsend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nsend b/scripts/nsend index 7337b4d..5aef4fd 100755 --- a/scripts/nsend +++ b/scripts/nsend @@ -21,7 +21,7 @@ case "${1}" in "-s") [ "${#}" -gt 3 ] && invalid_use - run "notify-send ${2} ${3}" + echo $(printf 'notify-send "%s" "%s"' "${1}" "${2}") exit 0 ;; |