diff options
| author | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
| commit | 8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4 (patch) | |
| tree | 868e0d8389fb2b4e413409f65f57caa9c0b37eda /.local/bin/dmenuunicode | |
| parent | db008a76e93dcfbf00fec5a141a1e1bd122b04a7 (diff) | |
| download | hyprdots-8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4.tar.gz | |
uupdate
Diffstat (limited to '.local/bin/dmenuunicode')
| -rwxr-xr-x | .local/bin/dmenuunicode | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/dmenuunicode b/.local/bin/dmenuunicode index 0289dc6..1c1b34a 100755 --- a/.local/bin/dmenuunicode +++ b/.local/bin/dmenuunicode @@ -2,8 +2,8 @@ # The famous "get a menu of emojis to copy" script. -# Get user selection via mew from emoji file. -chosen=$(cut -d ';' -f1 ~/.local/share/extras/chars/* | mew -i -l 30 | sed "s/ .*//") +# Get user selection via dmenu from emoji file. +chosen=$(cut -d ';' -f1 ~/.local/share/extras/chars/* | rofi -dmenu -i -l 30 | sed "s/ .*//") # Exit if none chosen. [ -z "$chosen" ] && exit |