aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2026-04-15 21:01:23 +0100
committerJustine Smithies <justine@smithies.me.uk>2026-04-15 21:01:23 +0100
commit0752531b421451094c17ebe0b59b95cd01b809a6 (patch)
tree3851ad5c7d7453a59bfee361ad13f18e2531d139 /.local
parent24e801a78ee37869e9c321ede2c3670b3985696a (diff)
Changed from rofi to fuzzel for Wayland
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/emoji-menu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/emoji-menu.sh b/.local/bin/emoji-menu.sh
index a45df3a..8e7f36f 100755
--- a/.local/bin/emoji-menu.sh
+++ b/.local/bin/emoji-menu.sh
@@ -11,7 +11,7 @@ if ! [ -f "$data_file" ]; then
fi
filter='.[] | (.emoji + " " + .description + " (" + (.aliases | join(", ")) + ")")'
-sel="$(jq -r "$filter" <"$data_file" | rofi -i -dmenu -mesg "Emoji Menu" | cut -d ' ' -f 1 | tr -d '\n')"
+sel="$(jq -r "$filter" <"$data_file" | fuzzel --no-exit-on-keyboard-focus-loss -d | cut -d ' ' -f 1 | tr -d '\n')"
if [ -n "$sel" ]; then
wl-copy "$sel"
fi