aboutsummaryrefslogtreecommitdiff
path: root/modules/daypercentage
blob: d97d6d856ddaf397c28b28ea21afd06ba3bfec06 (plain)
1
2
3
4
5
6
7
8
9
10
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) + "%")