fbpad: c-m-l locks the screen
[fbpad.git] / config.h
blob3e5aae203dec188843fe56abf155cbc7cd5df60d
1 #define TAGS "xnlhtr01uiva-"
2 #define TAGS_SAVED ""
3 #define SHELL "ksh"
4 #define MAIL "mailx"
5 #define EDITOR "vi"
7 /* fbval_t should match framebuffer depth */
8 typedef unsigned int fbval_t;
10 /* tinyfont files for regular, italic, and bold fonts */
11 #define FR "/path/to/font.tf"
12 #define FI NULL
13 #define FB NULL
15 #define FGCOLOR 0
16 #define BGCOLOR 7
18 /* where to write the screen shot */
19 #define SCRSHOT "/tmp/scr"
21 /* lock command password; NULL disables locking */
22 #define PASS NULL
24 /* optimized version of fb_val() */
25 #define FB_VAL(r, g, b) fb_val((r), (g), (b))
27 /* black */
28 #define COLOR0 0x000000
29 #define COLOR8 0x407080
30 /* red */
31 #define COLOR1 0xa02020
32 #define COLOR9 0xb05050
33 /* green */
34 #define COLOR2 0x156015
35 #define COLOR10 0x307030
36 /* yellow */
37 #define COLOR3 0x707030
38 #define COLOR11 0x909060
39 /* blue */
40 #define COLOR4 0x202070
41 #define COLOR12 0x303080
42 /* magenta */
43 #define COLOR5 0x903070
44 #define COLOR13 0xa05080
45 /* cyan */
46 #define COLOR6 0x602080
47 #define COLOR14 0x704090
48 /* white */
49 #define COLOR7 0xf0f0f0
50 #define COLOR15 0xdedede