diff options
Diffstat (limited to 'clicker.sh')
-rwxr-xr-x | clicker.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clicker.sh b/clicker.sh new file mode 100755 index 0000000..e6b1b49 --- /dev/null +++ b/clicker.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# Uses xdotool to perform keypresses. In this case it types a letter, sleeps and then deletes it + +while true; do + xdotool key a + sleep 3 + xdotool key BackSpace +done |