Initial commit

This commit is contained in:
2023-06-25 00:51:45 +01:00
parent 1121bee3aa
commit 2492d1d1c4
7 changed files with 62 additions and 18 deletions

17
look-busy.py Normal file
View File

@ -0,0 +1,17 @@
from wakepy import keepawake
import pyautogui
import time
with keepawake(keep_screen_awake=True):
while (True):
pyautogui.moveRel(100,0)
time.sleep(0.1)
pyautogui.moveRel(0,100)
time.sleep(0.1)
pyautogui.moveRel(-100,0)
time.sleep(0.1)
pyautogui.moveRel(0,-100)
time.sleep(0.1)