summaryrefslogtreecommitdiffstats
path: root/config.def.h
blob: 5f1677d3ee8eeab40346f6104d1f3b893421529f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* See LICENSE file for copyright and license details. */

/* 
 * crasfile_expiry: sets the amount of time after which a task file expires, in
 * seconds.
 */
static const int64_t crasfile_expiry = 86400; /* 86400 secs = 24 hrs */

/* 
 * task_todo_color, task_done_color: colors in which task_todo_str and 
 * task_done_str, respectively, are to be printed in. Colors must be set using 
 * ANSI escape codes.
 */
static const char task_todo_color[] = "\033[31;1m"; /* Red */
static const char task_done_color[] = "\033[32;1m"; /* Green */

/* 
 * task_todo_str, task_done_str: the appearance of the status labels can be 
 * modified here.
 */
static const char task_todo_str[] = "[TODO]";
static const char task_done_str[] = "[DONE]";