dotfiles/_desktop/_scripts/dmenu-emoji

12 lines
260 B
Plaintext
Raw Normal View History

2021-08-23 21:36:32 +02:00
#!/bin/sh
2022-01-19 13:00:28 +01:00
chosen=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -l 30 -i | sed "s/ .*//")
2021-08-23 21:36:32 +02:00
[ -z "$chosen" ] && exit
if [ -n "$1" ]; then
xdotool type "$chosen"
else
2022-04-25 02:02:51 +02:00
printf "$chosen" | xclip -rmlastnl
notify-send -t 2000 "'$chosen' copied to clipboard" &
2021-08-23 21:36:32 +02:00
fi