aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.scripts/menuemoji
blob: c21039f8ec3728b5dc108fa50392878435c734e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# Give dmenu list of all unicode characters to copy.
# Shows the selected character in dunst if running.

# Source settings from .bemenurc
. $HOME/.bemenurc

chosen=$(grep -v "#" ~/.emoji | bemenu -i -l 25 $BEMENU_OPTIONS)

if [ -z $chosen ]; then
    exit 0
fi

c=$(echo "$chosen" | sed "s/ .*//")
echo "$c" | tr -d '\n' | wl-copy
notify-send "'$c' copied to clipboard."