summaryrefslogtreecommitdiff
path: root/keyboard/emojiselector
blob: a47d348d62dc19398b2ac95f8190c0df5d754ce3 (plain)
1
2
3
4
5
#!/bin/sh
emojis=~/.local/share/emojis
chosen=$(grep -v '^$\|#' "$emojis" | dmenu -l 30 | cut -d' ' -f1)

[ -z "$chosen" ] || xdotool type "$chosen"