1
0
Fork 0

dmenuunicode: fix emoji path

This commit is contained in:
Luca Bilke 2024-12-12 14:55:27 +01:00
parent 000491a150
commit 76ba72b167
Signed by: luca
GPG key ID: F6E11C9BAA7C82F5

View file

@ -3,7 +3,7 @@
# 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/* | dmenu -i -l 30 | sed "s/ .*//")
chosen=$(cut -d' ' -f1 ~/.local/share/emoji | dmenu -i -l 30 | sed "s/ .*//")
# Exit if none chosen.
[ -z "$chosen" ] && exit