aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-08-28 17:13:12 +0300
committerYaroslav <contact@yaroslavps.com>2020-08-28 17:13:12 +0300
commitda8406fc71e6ef32cf77711b3550167cbc6efe6b (patch)
tree035cd16fe99e1e8050acc3514105fb628826b813 /dotfiles/.local/bin
parent12b30d57cf37fa289d904e6b120f83766ff02135 (diff)
downloadswayrice-da8406fc71e6ef32cf77711b3550167cbc6efe6b.tar.gz
swayrice-da8406fc71e6ef32cf77711b3550167cbc6efe6b.zip
being able to run menuemoji on the terminal through fzf
Diffstat (limited to 'dotfiles/.local/bin')
-rwxr-xr-xdotfiles/.local/bin/menuemoji15
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."