Increase inactivity delay to 90 seconds

This commit is contained in:
coolneng 2020-07-28 15:45:59 +02:00
parent 00fe7d12b7
commit 9c6915429c
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 1 additions and 1 deletions

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__":