81a9c0166b057d3c8c1a7f46737f9e492fd5e262
[fbpad.git] / config.h
blob81a9c0166b057d3c8c1a7f46737f9e492fd5e262
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 /* optimized version of fb_val() */
22 #define FB_VAL(r, g, b) fb_val((r), (g), (b))
24 /* black */
25 #define COLOR0 0x000000
26 #define COLOR8 0x407080
27 /* red */
28 #define COLOR1 0xa02020
29 #define COLOR9 0xb05050
30 /* green */
31 #define COLOR2 0x156015
32 #define COLOR10 0x307030
33 /* yellow */
34 #define COLOR3 0x707030
35 #define COLOR11 0x909060
36 /* blue */
37 #define COLOR4 0x202070
38 #define COLOR12 0x303080
39 /* magenta */
40 #define COLOR5 0x903070
41 #define COLOR13 0xa05080
42 /* cyan */
43 #define COLOR6 0x602080
44 #define COLOR14 0x704090
45 /* white */
46 #define COLOR7 0xf0f0f0
47 #define COLOR15 0xdedede