-
Notifications
You must be signed in to change notification settings - Fork 1
/
config
42 lines (35 loc) · 1.2 KB
/
config
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
# This file is an example configurations for todo.py
# To be recognized, it should be in ~/.config/todo/config
#
# The configuration is actually python code itself, so you can use any python code you like here
# From the todo.py file, you may expect the following modules to be present:
# os,sys,re,datetime
[config]
# Location of the todofile
todofile = os.path.expanduser ( os.path.join ( "~", "todo.txt" ) )
# Location of the donefile (file in which completed tasks are written until the next done operation)
donefile = os.path.expanduser ( os.path.join ( "~", "done.txt" ) )
# How many days in advance is a task rated 'critical' and colored accordingly
criticaldays = 2
[due]
normal: reset+";"+whitefg
soon: reset+";"+yellowfg
today: reset+";"+redfg
over: reset+";"+bold+";"+redfg
[priority]
p0 = reset+";"+whitefg
p1 = reset+";"+whitefg+";"+bold
p2 = reset+";"+cyanfg
p3 = reset+";"+cyanfg+";"+bold
p4 = reset+";"+magentafg
p5 = reset+";"+magentafg+";"+bold
p6 = reset+";"+yellowfg
p7 = reset+";"+yellowfg+";"+bold
p8 = reset+";"+redfg
p9 = reset+";"+redfg+";"+bold
# to mark projects with specific colors, use a dictionary
[projects]
personal = cyanfg
# We can customize tasks
[task:ls]
sortby: due