This commit is contained in:
2019-12-29 19:01:31 -05:00
parent dd5b0c8179
commit 2a60472dcb
23 changed files with 186 additions and 70 deletions

View File

@@ -1,7 +1,13 @@
#!/bin/bash
#!/bin/dash
# for i in {1..4} ; do
# xdotool key Left
# done
sleep .3
xdotool type 'https://twem.tk/.png'
for i in {1..4} ; do
i=0
while [ "$i" -ne 4 ]
do
xdotool key Left
i=$((i + 1))
done