blob: ef5f3014f8f4ac20d7f2b72a11a151d39b561552 (
plain)
1
2
3
4
5
|
#!/bin/sh
selected=$(grep -v '^#' ~/.local/share/scripts/accents.txt | dmenu -i -l 30 | cut -d' ' -f1)
echo -n "$selected" | xclip -selection clipboard
printf '%s\n' "$selected has been copied to the clipboard." | dzen2 -bg white -fg black -p 2 -x -475 -y 50 -w 475 -h 50
|