dotfiles/_suckless/_scripts/dmenu-emoji
2021-08-23 21:36:32 +02:00

13 lines
256 B
Bash
Executable File

#!/bin/sh
chosen=$(cut -d ';' -f1 ~/.local/share/emoji | dmenu -i -l 30 | sed "s/ .*//")
[ -z "$chosen" ] && exit
if [ -n "$1" ]; then
xdotool type "$chosen"
else
printf "$chosen" | xsel -l /dev/null
notify-send "'$chosen' copied to clipboard." &
fi