dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit c384c80cb27fe69f74bbdc24173cedaf6e761e5f
parent 6e0384cab0373544cfdf600f313e4e3e224c93d0
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 17 Dec 2018 13:53:33 +0100

Fix missing quote marks in custom notify-send script

Diffstat:
Mlinks/bin/notify-send | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/links/bin/notify-send b/links/bin/notify-send @@ -3,5 +3,5 @@ if [ "$(uname)" = "Darwin" ]; then echo "$@" | terminal-notifier -sound default [ "$#" -gt "0" ] && say "$@" else - /usr/bin/notify-send $@ + /usr/bin/notify-send "$@" fi