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