From 2ef628935fba7d043f94671e9d61a46506f77ef6 Mon Sep 17 00:00:00 2001 From: airclay Date: Fri, 3 Sep 2021 12:29:18 -0500 Subject: [PATCH] adjust timer --- systrayUpdater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systrayUpdater.py b/systrayUpdater.py index 76986dc..734b1fb 100755 --- a/systrayUpdater.py +++ b/systrayUpdater.py @@ -65,7 +65,7 @@ menu.addAction(option1) # Set up timer to update count timer = QTimer() timer.timeout.connect(newText) -timer.start(10000) +timer.start(600000) # To quit the app quit = QAction("Quit")