-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreminders.txt
More file actions
33 lines (32 loc) · 1.22 KB
/
reminders.txt
File metadata and controls
33 lines (32 loc) · 1.22 KB
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
# use this file to have random reminders shown
#created date,enabled,dow,times,interval,algorithm,message
#
# dow is a space separated series of 3-letter days, e.g. "mon tue wed"
# You can also use 'everyday', 'weekday' or 'weekend'
#
# times is a start-stop (in 24h format) to indicate when to show the item
# Needs work to support more powerful date semantics
# Supports:
# everyday
# weekday
# weekend
#
# interval - currently unused
#
# algo is the type of item.
# - "normal" for a displayed message.
# - "cmd" to run a command, such as check mail, or poweroff
#
20210215,enabled,sat sun,,600,normal,Its the weekend!
20210215,enabled,mon,0600-2100,600,normal,take the bins out
20210304,disabled,everyday,2355,600,cmd,echo /sbin/poweroff
20210306,enabled,mon,,600,normal,It's monday!
20210306,enabled,tue,,600,normal,It's tuesday!
20210306,enabled,wed,,600,normal,It's wednesday!
20210306,enabled,thu,,600,normal,It's thursday!
20210306,enabled,fri,,600,normal,It's friday!
#
# Following turn off the display overnight, turning it back on at 6am
#
20210408,enabled,everyday,2355,600,cmd,/usr/bin/vcgencmd display_power 0
20210408,enabled,everyday,0600,600,cmd,/usr/bin/vcgencmd display_power 1