Oooh I'm hypnotized

This commit is contained in:
λmolinae 2025-05-26 01:04:13 -06:00
parent fab483191f
commit a6b87ee942
10 changed files with 98 additions and 70 deletions

10
.local/bin/emojimenu Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
# Get user selection via fuzzel from emoji file.
chosen="$(cut -d ';' -f1 ~/.local/share/misc/chars/* | fuzzel -d -l 16 -w 32 | sed "s/ .*//")"
# Exit if none chosen.
[ -z "$chosen" ] && exit
printf "%s" "$chosen" | wl-copy
notify-send "emojimenu" "'$chosen' copied to clipboard." &