-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.properties
33 lines (20 loc) · 1.2 KB
/
config.properties
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
#<code>allTimePrograms</code> are always started regardless of the time the program is started.
allTimePrograms =skype,gedit
#<code>officeTimePrograms</code> are started if it is not holiday and lies between <code>officeStartTime</code> and <code>officeEndTime</code>.
officeTimePrograms =google-chrome
#<code>homeTimePrograms</code> are started if time lies between <code>homeStartTime</code> and <code>homeEndTime</code>. These programs are also started if <code>stayHomeDuringHolidays</code> is true and starting time is holiday
homeTimePrograms =nautilus
#office first hour
officeStartTime =10:00
#office last hour
officeEndTime =18:00
#home start hour
homeStartTime =18:00
#home end hour
homeEndTime =10:00
#<code>holidays</code>. These are the days during which you do not go to office(It doesn't mean that you will stay in home however.
# Set <code>stayHomeDuringHolidays</code> to true/false whichever preferred
holidays =SATURDAY,SUNDAY
#not staying home during holidays means neither in home nor in office.
#If it is true <code>homeTimePrograms<code> are started during <code>holidays</code> regardless of the time but only <code>allTimePrograms</code> are started if it is false
stayHomeDuringHolidays=true