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
82
83
84
85
86
87
88
89
90
|
# [Created by task 2.5.1 2/6/2017 17:29:09]
# Taskwarrior program configuration file.
# For more documentation, see http://taskwarrior.org or try 'man task', 'man task-color',
# 'man task-sync' or 'man taskrc'
# Here is an example of entries that use the default, override and blank values
# variable=foo -- By specifying a value, this overrides the default
# variable= -- By specifying no value, this means no default
# #variable=foo -- By commenting out the line, or deleting it, this uses the default
# Use the command 'task show' to see all defaults and overrides
# Files
#data.location=/home/yigit/Dropbox/.task
# Color theme (uncomment one to use)
#include /usr/share/doc/task/rc/light-16.theme
#include /usr/share/doc/task/rc/light-256.theme
#include /usr/share/doc/task/rc/dark-16.theme
#include /usr/share/doc/task/rc/dark-256.theme
#include /usr/share/doc/task/rc/dark-red-256.theme
include /usr/share/doc/task/rc/dark-green-256.theme
#include /usr/share/doc/task/rc/dark-blue-256.theme
#include /usr/share/doc/task/rc/dark-violets-256.theme
#include /usr/share/doc/task/rc/dark-yellow-green.theme
#include /usr/share/doc/task/rc/dark-gray-256.theme
#include /usr/share/doc/task/rc/dark-gray-blue-256.theme
#include /usr/share/doc/task/rc/solarized-dark-256.theme
#include /usr/share/doc/task/rc/solarized-light-256.theme
#include /usr/share/doc/task/rc/no-color.theme
###### GTD Configuration ######
### 'in' Report Definition
report.in.columns = id,description
report.in.description = Inbox
report.in.filter = status:pending limit:page (+in)
report.in.labels = ID,Description
### 'inConky' Report Definition
report.inConky.columns = description
report.inConky.description = Inbox for Conky
report.inConky.filter = status:pending limit:page (+in)
report.inConky.labels = Description
#
### 'todo' Report Definition
report.todo.columns = id,description,due
report.todo.labels = ID,Description,Due
report.todo.description = Tasks with due dates
report.todo.filter = status:pending and due.after:now and due.before:later
report.todo.sort = due+
report.todo.dateformat = D/M, a @H:N
### 'todo to Show in Conky' Report Definition
report.todoConky.columns = description,due
report.todoConky.labels = Description, Due
report.todoConky.description = Tasks to do
report.todoConky.sort = due+
report.todoConky.filter = status:pending and due.after:now and due.before:later
report.todoConky.dateformat = D-M-y H:N (A)
### report for focus script
report.custom_focus.columns = description
report.custom_focus.labels = Description
report.custom_focus.description = Task to feed to focus script
report.custom_focus.filter = status:pending and +ACTIVE
### contexts
context.home = +@home or +@online
context.work = +@work or +@online
### user defined attribute brainpower (difficulty of tasks)
uda.brainpower.type = string
uda.brainpower.label = Brainpower
uda.brainpower.values = H,M,L
uda.brainpower.default = M
### overriding 'next' report
report.next.description = Most urgent tasks
report.next.columns = id,start.age,entry.age,urgency,depends,priority,project,tags,recur,scheduled.countdown,due.remaining,until.remaining,description,brainpower
report.next.filter = status:pending and due.none: and +next and dep.none:
report.next.labels = ID,Active,Age,Urgency,Deps,P,Project,Tag,Recur,S,Due,Until,Description,Brainpower
report.next.sort = brainpower-,priority-,urgency-
calendar.details=full
taskd.certificate=\/home\/yigit\/.task\/yigit_sever.cert.pem
taskd.key=\/home\/yigit\/.task\/yigit_sever.key.pem
taskd.ca=\/home\/yigit\/.task\/ca.cert.pem
taskd.server=yigitsever.bike:53589
taskd.credentials=Public\/Yigit Sever\/d4682d9a-9895-4127-86af-8d2ffc6fffcd
taskd.trust=ignore hostname
|