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

list="$(grep -v "#" ~/.local/share/script-data/emoji)"

if [ "$1" = "-t" ]; then
  chosen=$(printf "$list" | fzf)
else
  # Source settings from .bemenurc
  . ~/.config/bemenurc

  chosen=$(printf "$list" | bemenu -i -l 25 --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB" --monitor="$BEMENU_MONITOR")
fi

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

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