blob: c29d97a9687405489ef38e37593a54f7bb7ad261 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/**************
* GameOfLife *
**************/
/* the number of random spawns per cycle */
#define RANDOM_SPAWNS 20
/* enable hotkeys q, p, c, +/- */
#define ENABLE_HOTKEYS 1
/* enable the upper status bar */
#define ENABLE_STATUS 1
/* enable the cursor */
#define ENABLE_CURSOR 1
/* set the cursor symbol */
#define CURSOR_CHAR '#'
/**************
* DummyShell *
**************/
#define _HAS_CMD 1
#define _HAS_MSG 1
#define _HAS_HOSTENT 1
#define _HAS_SIGNAL 1
#define _HAS_UTMP 1
#define _HAS_SYSINFO 1
/***********
* suidcmd *
***********/
/* suid commands (e.g.: "first-cmd", "second-cmd", "nth-cmd") */
#define SUIDCMD_CMDS "/usr/sbin/ether-wake", "/bin/ping"
|