aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/Watcher/afk.py2
-rwxr-xr-xsrc/Watcher/time_operations.py13
2 files changed, 14 insertions, 1 deletions
diff --git a/src/Watcher/afk.py b/src/Watcher/afk.py
index 41f8fe9..3d92068 100755
--- a/src/Watcher/afk.py
+++ b/src/Watcher/afk.py
@@ -15,7 +15,7 @@ def returned_from_afk(afk_active, timeout):
return has_returned
def is_afk(timeout):
- timeout = timeout * 60 * 1000 - 200 # minimizing 200 milisec error
+ timeout = timeout * 60 * 1000 - 100 # minimizing 100 milisec error
#If the AFK feature is installed
time_since_last_input = int(os.popen("xprintidle").read()[:-1])
if (time_since_last_input > timeout):
diff --git a/src/Watcher/time_operations.py b/src/Watcher/time_operations.py
index 1df4922..5042983 100755
--- a/src/Watcher/time_operations.py
+++ b/src/Watcher/time_operations.py
@@ -66,4 +66,17 @@ def convert_into_sec(t):
sec = int(t[0:2])*3600 + int(t[3:5])*60 + int(t[6::])
return sec
+def convert(sec):
+ sec = int(sec)
+ sec = sec % (24 * 3600)
+ hr = sec // 3600
+ sec %= 3600
+ mn = sec // 60
+ sec %= 60
+ hr = str(hr).zfill(2)
+ mn = str(mn).zfill(2)
+ sec = str(sec).zfill(2)
+
+ result = hr + ":" + mn + ":" + sec
+ return result