diff options
Diffstat (limited to '.local/bin/emoji-copy')
-rwxr-xr-x | .local/bin/emoji-copy | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.local/bin/emoji-copy b/.local/bin/emoji-copy new file mode 100755 index 0000000..a52c171 --- /dev/null +++ b/.local/bin/emoji-copy @@ -0,0 +1,20 @@ +#!/bin/sh + +# Runs a prompt to choose an emoji to copy +# to the clipboard. Some font-awesome icons are +# also supported. + +choice=$( cat $SCRIPTS/utilities/.emoji-list.txt | dmenu -i -p "Emojis & Font Awesome") + +icon=$(echo $choice | sed "s/\(.\).*$/\1/") +label=$(echo $choice | sed "s/^..\(.*\)/\1/") + +printf $icon | xsel -b + +echo "$icon" + +if [[ "$icon" == "" ]]; then + notify-send "Operation Cancelled" +else + notify-send -i "$HOME/.fonts/svgs/$label.svg" "Clipboard:" "$label has been copied!" +fi |