dotfiles/.local/bin/printclip
Oliver Atkinson 5aed9d6f68 Add printclip
This is for when an application doesn't support pasting from the clip
baord. Thus, this just types your clipboard
2023-11-17 20:29:31 -07:00

9 lines
100 B
Bash
Executable File

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