-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalarm.py
61 lines (52 loc) · 1.64 KB
/
alarm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
'''
An alarm clock because the Win10 Alarm App HCI is trash.
Added support for linux because aur/timer doesn't support repeating until dismissed.
'''
import datetime as dt
from time import sleep
import chime
def parseIntWithEmptyAsZero(x: str, /):
return int(x) if x.strip() else 0
def main():
chime.theme('zelda')
while True:
print('[a]: alarm mode. Give the target time.')
print('[t]: timer mode. Give the duration.')
op = input('> ').lower()
if op in [*'at']:
break
now = dt.datetime.now
if op == 'a':
h = parseIntWithEmptyAsZero(input('Hour (24h): '))
m = parseIntWithEmptyAsZero(input('Minute: '))
target = dt.datetime.combine(dt.date.today(), dt.time(h, m, 0))
delta = target - now()
elif op == 't':
dh = parseIntWithEmptyAsZero(input('# of hours: '))
dm = parseIntWithEmptyAsZero(input('# of minutes: '))
delta = dt.timedelta(hours=dh, minutes=dm)
target = now() + delta
print('>' * 16)
pad = ' ' * len(str(delta))
print('target', target, sep=' ')
print(' ', pad, '▲', sep=' ')
print('delta ', str(delta), '|', sep=' ')
print(' ', pad, '|', sep=' ')
print('now ', now(), sep=' ')
print('<' * 16)
chime.info()
while input('Can you hear the sound now? y/n > ').lower() != 'y':
chime.info()
print('Alarm is ticking...')
while delta.days >= 0:
sleep(max(.1, min(60, delta.seconds * .9)))
delta = target - now()
while True:
try:
print('Alarm!!! Ctrl+C to dismiss...')
chime.info(sync=True)
sleep(1)
except KeyboardInterrupt:
print('Alarm dismissed.')
break
main()