1 #!/bin/sh 2 3 col_gray1="#000000" 4 col_gray3="#cccccc" 5 col_darkmagenta="#8B008B" 6 col_gray4="#eeeeee" 7 8 # dmenufont='Victor Mono:style=SemiBold:size=9'; 9 dmenufont="DejaVuSansMono Nerd Font:style=Regular:size=8" 10 dmenuargs="-l 16 -c -h 16 -z 850 -bw 2" 11 12 clipmenu -fn "$dmenufont" -nb $col_gray1 -nf $col_gray3 \ 13 -sb $col_darkmagenta -sf $col_gray4 $dmenuargs -p "Clipboard paste: " 14 15 [ "$?" = "0" ] && xdotool key shift+Insert
