never-away/main.py

12 lines
181 B
Python
Raw Normal View History

2024-06-12 15:59:21 +02:00
from pyautogui import press
from time import sleep
def action():
while True:
sleep(0.1)
press("win")
sleep(20)
if __name__ == "__main__":
action()