diff options
author | 2022-09-17 06:39:45 +0530 | |
---|---|---|
committer | 2022-09-17 06:39:45 +0530 | |
commit | f0636d1ac0201686b22f252f3b7eaba7879553b6 (patch) | |
tree | c9853a75734ca2803623a83d295659d37bafdf35 /src | |
parent | 9fd05fa5f70164aaa7df70bdf4b6b467f7108f22 (diff) | |
download | shopno-os-log-sync-f0636d1ac0201686b22f252f3b7eaba7879553b6.tar.gz shopno-os-log-sync-f0636d1ac0201686b22f252f3b7eaba7879553b6.zip |
compensating error value changed
Diffstat (limited to 'src')
-rwxr-xr-x | src/Watcher/afk.py | 2 | ||||
-rwxr-xr-x | src/Watcher/time_operations.py | 13 |
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 |