Fix manual page markup
[abduco.git] / config.def.h
blobae9bfbc182204af6fbbcd82f8a314df8cf45dc75
1 /* default command to execute if non is given and $ABDUCO_CMD is unset */
2 #define ABDUCO_CMD "dvtm"
3 /* default detach key, can be overriden at run time using -e option */
4 static char KEY_DETACH = CTRL('\\');
5 /* redraw key to send a SIGWINCH signal to underlying process (unused by default) */
6 static char KEY_REDRAW = 0;
7 /* Where to place the "abduco" directory storing all session socket files.
8 * The first directory to succeed is used. */
9 static struct Dir {
10 char *path; /* fixed (absolute) path to a directory */
11 char *env; /* environment variable to use if (set) */
12 bool personal; /* if false a user owned sub directory will be created */
13 } socket_dirs[] = {
14 { .env = "ABDUCO_SOCKET_DIR", false },
15 { .env = "HOME", true },
16 { .env = "TMPDIR", false },
17 { .path = "/tmp", false },