2023-07-12 11:08:40 +02:00
|
|
|
#ifndef DEF_CONFIG_H
|
|
|
|
#define DEF_CONFIG_H
|
|
|
|
|
2023-10-03 18:19:23 +02:00
|
|
|
#define VERSION "1.3.0"
|
2023-07-12 22:47:19 +02:00
|
|
|
|
|
|
|
// By default, $HOME/.config/takl.sqlite3 is used. You can change this behaviour here
|
|
|
|
//#define DB_FILE "takl.sqlite3"
|
2023-07-12 11:08:40 +02:00
|
|
|
|
2023-07-16 13:04:37 +02:00
|
|
|
// By default, /tmp/takl.$USER is used. You can change this behaviour here
|
|
|
|
//#define SOCKET_FILE "takl.sock"
|
|
|
|
|
2023-07-12 21:55:27 +02:00
|
|
|
#define MAX_TASK_ID 10000 // max is set to MAX_TASK_ID-1
|
|
|
|
#define NEW_TASK_ID_MAX_RETRIES 10000 // number of retries before giving up
|
|
|
|
|
2023-07-12 11:08:40 +02:00
|
|
|
#endif
|