diff options
| -rwxr-xr-x | dotfiles/.local/bin/menuemoji | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/dotfiles/.local/bin/menuemoji b/dotfiles/.local/bin/menuemoji index 9303d81..094a5a9 100755 --- a/dotfiles/.local/bin/menuemoji +++ b/dotfiles/.local/bin/menuemoji @@ -2,15 +2,22 @@  # Give dmenu list of all unicode characters to copy.  # Shows the selected character in dunst if running. -# Source settings from .bemenurc -. ~/.config/bemenurc +list="$(grep -v "#" ~/.local/share/script-data/emoji)" -chosen=$(grep -v "#" ~/.local/share/script-data/emoji | 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") +if [ "$1" = "-t" ]; then +  chosen=$(printf "$list" | fzf) +else +  # Source settings from .bemenurc +  . ~/.config/bemenurc -if [ -z $chosen ]; then +  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." | 
