delete look-busy.py

This commit is contained in:
2023-11-01 11:36:59 +00:00
parent 108f254dd3
commit 1e93ca38dc

View File

@ -1,19 +0,0 @@
#!/bin/python3
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)