diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-08-28 17:13:12 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-08-28 17:13:12 +0300 |
commit | da8406fc71e6ef32cf77711b3550167cbc6efe6b (patch) | |
tree | 035cd16fe99e1e8050acc3514105fb628826b813 /dotfiles | |
parent | 12b30d57cf37fa289d904e6b120f83766ff02135 (diff) | |
download | swayrice-da8406fc71e6ef32cf77711b3550167cbc6efe6b.tar.gz swayrice-da8406fc71e6ef32cf77711b3550167cbc6efe6b.zip |
being able to run menuemoji on the terminal through fzf
Diffstat (limited to 'dotfiles')
-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." |