From da8406fc71e6ef32cf77711b3550167cbc6efe6b Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Fri, 28 Aug 2020 17:13:12 +0300 Subject: being able to run menuemoji on the terminal through fzf --- dotfiles/.local/bin/menuemoji | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'dotfiles/.local/bin') 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." -- cgit v1.2.3