dotfiles/bin/dmenukaomoji

24 lines
835 B
Text
Raw Normal View History

2021-02-13 12:49:36 +00:00
#!/bin/sh
# The famous "get a menu of kaomojis to copy" script.
# Must have xclip installed to even show menu.
2021-05-12 10:48:42 +00:00
#xclip -h 2>/dev/null || exit 1
# If this errors, the user wont be able to know why that is happening as there'll be no error message, why not just let it error normally when trynna run?
2021-02-13 12:49:36 +00:00
chosen=$(dmenu -i -l 20 < ~/.local/share/kaomoji | sed "s/ .*//")
2021-05-12 10:48:42 +00:00
#[ "$chosen" != "" ] || exit
# The != is a little redundant, just placing the variable itself will check if its non-empty.
[ "$chosen" ] || exit
2021-02-13 12:49:36 +00:00
# If you run this command with an argument, it will automatically insert the character.
2021-05-12 10:48:42 +00:00
#if [ -n "$1" ]; then
# Same as above, -n and -z arent all that usefull...
if [ "$1" ]; then
2021-02-13 12:49:36 +00:00
xdotool key Shift+Insert
else
echo "$chosen" | tr -d '\n' | xclip -selection clipboard
notify-send "'$chosen' copied to clipboard." &
fi