Oliver Atkinson
5aed9d6f68
This is for when an application doesn't support pasting from the clip baord. Thus, this just types your clipboard
9 lines
100 B
Bash
Executable File
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)
|