mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
dmenuunicode script simplify
This commit is contained in:
parent
0795202675
commit
4d458398e9
@ -1,18 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# The famous "get a menu of emojis to copy" script.
|
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}')
|
||||||
# Get user selection via dmenu from emoji file.
|
printf "%s" "$chosen" | xclip -sel c
|
||||||
chosen=$(cut -d ';' -f1 ~/.local/share/larbs/chars/* | dmenu -i -l 30 | sed "s/ .*//")
|
notify-send "$chosen copied to clipboard" &
|
||||||
|
xdotool type "$chosen"
|
||||||
# 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
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user