dotfiles/_desktop/_scripts/dmenu-chars

12 lines
265 B
Plaintext
Raw Normal View History

2021-08-23 21:36:32 +02:00
#!/bin/sh
chosen=$(cut -d ';' -f1 $XDG_CONFIG_HOME/qtile/chars/* | dmenu -l 30 -i | sed "s/ .*//")
2021-08-23 21:36:32 +02:00
[ -z "$chosen" ] && exit
if [ -n "$1" ]; then
xdotool type "$chosen"
else
printf "$chosen" | wl-copy -n
notify-send -t 2000 "'$chosen' copied to clipboard" &
2021-08-23 21:36:32 +02:00
fi