dotfiles/_suckless/_scripts/dmenu-emoji

12 lines
254 B
Plaintext
Raw Normal View History

2021-08-23 21:36:32 +02:00
#!/bin/sh
2021-10-20 10:20:38 +02:00
chosen=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -c -l 30 -i | sed "s/ .*//")
2021-08-23 21:36:32 +02:00
[ -z "$chosen" ] && exit
if [ -n "$1" ]; then
xdotool type "$chosen"
else
printf "$chosen" | xsel -l /dev/null
dunstify "'$chosen' copied to clipboard" &
2021-08-23 21:36:32 +02:00
fi