From 0d7f069d02e5ec38057cfbf7f06dd6f8b944a78e Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Thu, 19 Jun 2025 00:47:12 +0400 Subject: fix: wrap notify-send arguments in quotes to preserve spacing --- scripts/nsend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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 ;; -- cgit v1.2.3