1
0
Fork 0
dotfiles/.local/bin/dmenuunicode

19 lines
553 B
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
# The famous "get a menu of emojis to copy" script.
# Get user selection via dmenu from emoji file.
2023-02-04 22:15:35 +01:00
chosen=$(cut -d ';' -f1 ~/.local/share/chars/* | dmenu -i -l 30 | sed "s/ .*//")
2022-07-04 21:36:33 +02:00
# Exit if none chosen.
[ -z "$chosen" ] && exit
# If you run this command with an argument, it will automatically insert the
# character. Otherwise, show a message that the emoji has been copied.
if [ -n "$1" ]; then
2023-04-12 11:37:10 +02:00
xdotool type "$chosen"
2022-07-04 21:36:33 +02:00
else
2023-04-12 11:37:10 +02:00
printf "%s" "$chosen" | xclip -selection clipboard
notify-send "'$chosen' copied to clipboard." &
2022-07-04 21:36:33 +02:00
fi