2019-10-23 10:00:28 +00:00
|
|
|
#!/usr/bin/fish
|
|
|
|
grep -v "#" ~/.config/emoji.txt | rofi -dmenu -i | awk '{print $1}' | tr -d '\n' | xclip -selection clipboard
|
|
|
|
|
|
|
|
set emoji (xclip -o -selection clipboard | tr -d '\n')
|
2019-10-23 11:01:43 +00:00
|
|
|
test -z "$emoji" && exit
|
2019-10-23 10:00:28 +00:00
|
|
|
set -a emoji "copied to clipboard"
|
|
|
|
pgrep -x dunst >/dev/null && notify-send $emoji
|