14 lines
339 B
Bash
Executable File
14 lines
339 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# The famous "get a menu of emojis to copy" script.
|
|
|
|
# Get user selection via dmenu from emoji file.
|
|
chosen=$(cut -d ';' -f1 ~/.local/share/chars/* | rofi -dmenu -i -l 30 | sed "s/ .*//")
|
|
|
|
# Exit if none chosen.
|
|
[ -z "$chosen" ] && exit
|
|
|
|
wtype "$chosen"
|
|
printf "$chosen" | wl-copy
|
|
notify-send "'$chosen' copied to clipboard." &
|