Fix in emoji picker.

This commit is contained in:
Bartek Stalewski 2023-05-15 23:42:34 +02:00
parent 320f86a544
commit 2bb29319f1

View File

@ -6,6 +6,6 @@ chosen=$(cut -d ';' -f1 $XDG_CONFIG_HOME/qtile/chars/* | dmenu -l 20 -i -p "sele
if [ -n "$1" ]; then
xdotool type "$chosen"
else
printf "$chosen" | wl-copy -n
printf "$chosen" | xclip -rmlastnl
notify-send -t 2000 "'$chosen' copied to clipboard" &
fi