#!/bin/sh # Give dmenu list of all unicode characters to copy. # Shows the selected character in dunst if running. # Source settings from .bemenurc . ~/.config/bemenurc 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") if [ -z $chosen ]; then exit 0 fi c=$(echo "$chosen" | sed "s/ .*//") echo "$c" | tr -d '\n' | wl-copy notify-send "'$c' copied to clipboard."