From a995874431c74929a8ac26ddaf96741429e6382d Mon Sep 17 00:00:00 2001 From: shmibs Date: Wed, 21 May 2014 08:26:56 -0700 Subject: minor updates nothing important to see here --- .config/sxiv/exec/key-handler | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.config/sxiv/exec/key-handler') diff --git a/.config/sxiv/exec/key-handler b/.config/sxiv/exec/key-handler index 592f365..30b05a8 100755 --- a/.config/sxiv/exec/key-handler +++ b/.config/sxiv/exec/key-handler @@ -18,8 +18,8 @@ case "$1" in notify-send "uploading $(basename $2) to /tmp/ failed" else name=$(echo "http://shmibbles.me/tmp/$(basename $2)" | sed 's/ /%20/g') - echo "$name" | xclip -i -selection clipboard - echo "$name" | xclip -i -selection primary + echo "$name" | tr -d '\n' | xclip -i -selection clipboard + echo "$name" | tr -d '\n' | xclip -i -selection primary notify-send "uploaded $(basename $2) to /tmp/" fi ;; @@ -29,8 +29,8 @@ case "$1" in notify-send "uploading $(basename $2) to /img/ failed" else name=$(echo "http://shmibbles.me/img/$(basename $2)" | sed 's/ /%20/g') - echo "$name" | xclip -i -selection clipboard - echo "$name" | xclip -i -selection primary + echo "$name" | tr -d '\n' | xclip -i -selection clipboard + echo "$name" | tr -d '\n' | xclip -i -selection primary notify-send "uploaded $(basename $2) to /img/" fi ;; -- cgit v1.2.3