Merge 4d458398e90f9764ff857030ecfc4015940ef3ad into 7a96fb100cf385e05c211937b509d2bf166299e6

This commit is contained in:
Sayanta 2023-12-30 10:47:12 -07:00 committed by GitHub
commit 00194c3005
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,18 +1,7 @@
#!/bin/sh
# The famous "get a menu of emojis to copy" script.
# Get user selection via dmenu from emoji file.
chosen=$(cut -d ';' -f1 ~/.local/share/larbs/chars/* | 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
emoji=$(curl -s https://raw.githubusercontent.com/jchook/emoji-menu/master/data/emojis.txt | dmenu -i -p "Emojis" -l 20)
chosen=$(echo "$emoji" | awk '{print $1}')
printf "%s" "$chosen" | xclip -sel c
notify-send "$chosen copied to clipboard" &
xdotool type "$chosen"