From 76ba72b167cc9a65093b152ec303896825e1f241 Mon Sep 17 00:00:00 2001
From: Luca Bilke <luca@bil.ke>
Date: Thu, 12 Dec 2024 14:55:27 +0100
Subject: [PATCH] dmenuunicode: fix emoji path

---
 common/.local/libexec/dwm/dmenuunicode | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common/.local/libexec/dwm/dmenuunicode b/common/.local/libexec/dwm/dmenuunicode
index 0d6681a4..9d0389f1 100755
--- a/common/.local/libexec/dwm/dmenuunicode
+++ b/common/.local/libexec/dwm/dmenuunicode
@@ -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