Increase inactivity delay to 90 seconds

This commit is contained in:
2020-07-28 15:45:59 +02:00
parent 00fe7d12b7
commit 9c6915429c

View File

@@ -14,7 +14,7 @@ def main():
screen_height = 600 screen_height = 600
while True: while True:
erratic_movement(screen_width, screen_height) erratic_movement(screen_width, screen_height)
sleep(randbelow(10)) sleep(randbelow(90))
if __name__ == "__main__": if __name__ == "__main__":