aboutsummaryrefslogtreecommitdiff
path: root/modules/daypercentage.py
diff options
context:
space:
mode:
authorBaitinq <30861839+Baitinq@users.noreply.github.com>2021-12-21 23:29:20 +0000
committerGitHub <noreply@github.com>2021-12-21 23:29:20 +0000
commit79d7dacd4fb9f06976fc5e5f4f4593e7051e2f1d (patch)
treea38864225cedd79d92f89168c4f5b25a7f708d75 /modules/daypercentage.py
parenta0cb7fddca5fba76c8c3d70cd9d265c1d16f888a (diff)
Update the daypercentage module to fix bug and use python
Diffstat (limited to 'modules/daypercentage.py')
-rwxr-xr-xmodules/daypercentage.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/daypercentage.py b/modules/daypercentage.py
new file mode 100755
index 0000000..d97d6d8
--- /dev/null
+++ b/modules/daypercentage.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python3
+
+PREFIX = ' '
+
+import datetime
+
+now = datetime.datetime.now()
+minutes = now.hour * 60 + now.minute
+percentage = round(minutes * 100 / 1440)
+
+print(PREFIX + str(percentage) + "%")