Add printclip

This is for when an application doesn't support pasting from the clip
baord. Thus, this just types your clipboard
This commit is contained in:
Oliver Atkinson 2023-11-17 20:29:31 -07:00
parent edf0a89c7b
commit 5aed9d6f68

8
.local/bin/printclip Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
for (( i=1; i<4; i++ )); do
echo $i
sleep 1
done
echo "Go!"
xdotool type $(xclip -o)