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
|
2021-08-28 01:38:42 +02:00
|
|
|
dunstify "'$chosen' copied to clipboard" &
|
2021-08-23 21:36:32 +02:00
|
|
|
fi
|