summaryrefslogtreecommitdiffstats
path: root/public/.local/bin/dmenu-emoji.sh
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2025-06-23 22:20:20 +0900
committerMitsuo Tokumori <[email protected]>2025-06-23 22:20:20 +0900
commit0ef90b80e441afdc8dada2b7c2f28fef415bf37e (patch)
treed09d78e3606f183d37346d4b39415ff78db8733d /public/.local/bin/dmenu-emoji.sh
parent55fa988f6f8316918f8a1a5a901b0561467c1b77 (diff)
downloaddotfiles-0ef90b80e441afdc8dada2b7c2f28fef415bf37e.tar.gz
dotfiles-0ef90b80e441afdc8dada2b7c2f28fef415bf37e.tar.bz2
dotfiles-0ef90b80e441afdc8dada2b7c2f28fef415bf37e.zip
Add dmenu-emoji.sh
Diffstat (limited to 'public/.local/bin/dmenu-emoji.sh')
-rwxr-xr-xpublic/.local/bin/dmenu-emoji.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/public/.local/bin/dmenu-emoji.sh b/public/.local/bin/dmenu-emoji.sh
new file mode 100755
index 0000000..92a2960
--- /dev/null
+++ b/public/.local/bin/dmenu-emoji.sh
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+# Based on https://github.com/LukeSmithxyz/voidrice/blob/master/.local/bin/dmenuunicode
+# The famous "get a menu of emojis to copy" script.
+
+# Get user selection via dmenu from emoji file.
+chosen=$(cut -d ';' -f1 ~/.local/share/dmenu/chars/* | grep -v '^#' | dmenu -i -l 30 | sed "s/ .*//")
+
+# Exit if none chosen.
+[ -z "$chosen" ] && exit
+
+# If you run this command with an argument, it will automatically insert the
+# character. Otherwise, show a message that the emoji has been copied.
+if [ -n "$1" ]; then
+ xdotool type "$chosen"
+else
+ printf "%s" "$chosen" | xclip -selection clipboard
+ notify-send "'$chosen' copied to clipboard." &
+fi
+