2021-08-23 21:36:32 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-02-22 16:19:33 +01:00
|
|
|
chosen=$(cut -d ';' -f1 $XDG_CONFIG_HOME/qtile/chars/* | rofi -dmenu -i -p "select character to copy" | sed "s/ .*//")
|
2021-08-23 21:36:32 +02:00
|
|
|
[ -z "$chosen" ] && exit
|
|
|
|
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
xdotool type "$chosen"
|
|
|
|
else
|
2023-02-16 16:03:59 +01:00
|
|
|
printf "$chosen" | wl-copy -n
|
2022-11-07 00:05:36 +01:00
|
|
|
notify-send -t 2000 "'$chosen' copied to clipboard" &
|
2021-08-23 21:36:32 +02:00
|
|
|
fi
|