-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfocus_task.cfg
81 lines (68 loc) · 2.29 KB
/
focus_task.cfg
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Focus task configuration file
task {
# Duration (minutes) - Ends the task after specified duration.
duration 30;
## Applications or scripts to run, close, or block. ##
#apps {
# # execute script, command, or program at task start
# run "/path/to/script"; # can include arguments, multiple paths
#
# # execute script, command, or program at task end
# end_run "/path/to/script"; # task manually ended
# timer_run "/path/to/script"; # timer elapsed
#
# # close programs at task start
# close program-name;
# close "/path/to/binary";
#
# # close programs at task end
# end_close program-name, "/path/to/binary"; # task manually ended
# timer_close program-name, "/path/to/binary"; # timer elapsed
#
# # block programs during task run
# block program-name;
# block "/path/to/binary";
#
# # examples:
# run 'whoami >> /tmp/focus_whoami', firefox;
# run /usr/bin/chromium, 'google\ chrome';
#}
## Notification - Notification messages to show. ##
#notify {
# # show notification at task start
# show "message here";
#
# # show notification at task end
# end_show "message here"; # task manually ended
# timer_show "message here"; # timer elapsed
#}
## Sounds - Sound files to play. ##
#sounds {
# # play sound file at task start
# play "/path/to/file";
#
# # play sound file at task end
# end_play "/path/to/file"; # task manually ended
# timer_play "/path/to/file"; # timer elapsed
#}
## IM - Instant messenger status changes. ##
#im {
# # define status messages
# status_msg working, "i'm working.. hello?!";
# status_msg lunch, "out to lunch";
# status_msg away, "afk";
#
# status away, :working;
# status away, "busy as eva!";
# end_status online;
# timer_status online;
#}
## Sites - Website domains to block. ##
#sites {
# block domain1, domain2, "domain3", "http://domain4.com";
#
# # examples:
# block youtube.com, "http://www.reddit.com", 'plus.google.com';
# block news.ycombinator.com, twitter.com, "www.facebook.com";
#}
}