scrsnap: save framebuffer for selected tags
[fbpad.git] / config.h
blobdc64c08348d2b0fac885fb0a925c8abba21f876f
1 #define TAGS "xnlhtr01uiva-"
2 #define TAGS_SAVED ""
3 #define SHELL "ksh"
4 #define MAIL "mailx"
5 #define EDITOR "vi"
7 #define TINYFONT "/path/to/tinyfont/file.tf"
9 #define FGCOLOR 0
10 #define BGCOLOR 7
12 /* black */
13 #define COLOR0 0x000000
14 #define COLOR8 0x407080
15 /* red */
16 #define COLOR1 0xa02020
17 #define COLOR9 0xb05050
18 /* green */
19 #define COLOR2 0x156015
20 #define COLOR10 0x307030
21 /* yellow */
22 #define COLOR3 0x707030
23 #define COLOR11 0x909060
24 /* blue */
25 #define COLOR4 0x202070
26 #define COLOR12 0x303080
27 /* magenta */
28 #define COLOR5 0x903070
29 #define COLOR13 0xa05080
30 /* cyan */
31 #define COLOR6 0x602080
32 #define COLOR14 0x704090
33 /* white */
34 #define COLOR7 0xf0f0f0
35 #define COLOR15 0xdedede
37 /* where to write the screen shot */
38 #define SCRSHOT "/tmp/scr"
40 /* framebuffer depth */
41 typedef unsigned int fbval_t;
43 /* optimized version of fb_val() */
44 #define FB_VAL(r, g, b) fb_val((r), (g), (b))