diff options
-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 ;; |