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 791870b0a8ff78e2a477161351a82a15193b9fe7
parent 22430599ea789b72c033bea75f465251c0f6c6d9
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri, 12 Apr 2019 15:58:56 +0200

Fix newline in notification

Diffstat:
Mbin/shdl | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bin/shdl b/bin/shdl @@ -149,7 +149,8 @@ if [ $# -lt 1 ]; then else for doi in "$@"; do handle_doi "$doi" - [ "$notify" = 1 ] && notify-send "${0##*/}:\n$doi complete" + [ "$notify" = 1 ] && notify-send "${0##*/}: +$doi complete" done fi exit "$returnstatus"