summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2025-06-19 00:47:12 +0400
committerSuleyman Farajli <suleyman@farajli.net>2025-06-19 00:47:12 +0400
commit0d7f069d02e5ec38057cfbf7f06dd6f8b944a78e (patch)
tree1b81d317ff92b4e69c3528a8996c7872c048c7e1
parent4b772b29644c0be670cededdea6732d6f2bc642a (diff)
fix: wrap notify-send arguments in quotes to preserve spacing
-rwxr-xr-xscripts/nsend2
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
;;