mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
9 lines
141 B
Bash
Executable file
9 lines
141 B
Bash
Executable file
#!/bin/sh
|
|
winid=$(xdotool search "Mine" | head -n1)
|
|
for i in {1..50};
|
|
do
|
|
xdotool keydown "5"
|
|
xdotool keyup "5"
|
|
sleep 0.05
|
|
done
|
|
exit 0
|