summaryrefslogtreecommitdiff
path: root/clicker.sh
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-10-09 17:04:50 +0200
committerOskar <[email protected]>2024-10-09 17:04:50 +0200
commitbee423d15287eb1908773fa3e92a8ee8792fae75 (patch)
tree8ad8501b42e6a8e426eb3011168288ff1ae99e01 /clicker.sh
some of the scripts i use
Diffstat (limited to 'clicker.sh')
-rwxr-xr-xclicker.sh8
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