From f832d43206035e4101472a1d07d261952dfdd85d Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Sun, 31 Jul 2022 11:54:40 +0200 Subject: Swapped echo -e for printf in various scripts. --- clipboardUtils.sh | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'clipboardUtils.sh') diff --git a/clipboardUtils.sh b/clipboardUtils.sh index fadb3e7..49f39d0 100755 --- a/clipboardUtils.sh +++ b/clipboardUtils.sh @@ -3,22 +3,27 @@ # Manipulate the X selection # Dependencies: dmenu, xsel -options="Show selections\nReplicate selections\nWrite to selection" -target="$(echo -e "$options" | dmenu -l 3 -i -p "~ Clipboard utils ~")" +options="Show selections\nReplicate selections\nWrite to selection\n" +selections="Clipboard\nPrimary\nSecondary\n" + +target="$(printf "$options" | dmenu -l 3 -i -p "~ Clipboard utils ~")" [ "$target" = "" ] && exit 0 + case "$target" in + "Show selections") notify-send "Clipboard: [$(xsel -bo)] Primary: [$(xsel -po)] Secondary: [$(xsel -so)]" ;; + "Replicate selections") - fromSelection="$(echo -e "Clipboard\nPrimary\nSecondary" | dmenu -l 3 -i -p "From selection:")" + fromSelection="$(printf "$selections" | dmenu -l 3 -i -p "From selection:")" [ "$fromSelection" = "" ] && exit 0 case "$fromSelection" in "Clipboard") fromOption=b ;; "Primary") fromOption=p ;; "Secondary") fromOption=s ;; esac - toSelection="$(echo -e "Clipboard\nPrimary\nSecondary" | dmenu -l 3 -i -p "To selection:")" + toSelection="$(printf "$selections" | dmenu -l 3 -i -p "To selection:")" [ "$toSelection" = "" ] && exit 0 case "$toSelection" in "Clipboard") toOption=b ;; @@ -26,8 +31,9 @@ Secondary: [$(xsel -so)]" ;; "Secondary") toOption=s ;; esac xsel -"$fromOption"o | xsel -"$toOption"i && notify-send "Copied [$(xsel -"$toOption"o)] from $fromSelection to $toSelection." ;; + "Write to selection") - selectedSelection="$(echo -e "Clipboard\nPrimary\nSecondary" | dmenu -l 3 -i -p "Write to which selection?")" + selectedSelection="$(printf "$selections" | dmenu -l 3 -i -p "Write to which selection?")" textToWrite="$(dmenu -p "Text to write to $selectedSelection:")" [ "$textToWrite" = "" ] && exit 0 case "$selectedSelection" in @@ -36,4 +42,5 @@ Secondary: [$(xsel -so)]" ;; "Secondary") echo "$textToWrite" | xsel -si ;; esac notify-send "Written [$textToWrite] to $selectedSelection." ;; + esac -- cgit v1.2.1