term: ignore movements beyond the scrolling region
[fbpad.git] / conf.h
blob0d096d106c7f8db1823ef97aaed73015637f4981
1 /* framebuffer device */
2 #define FBDEV "/dev/fb0"
4 /* list of tags */
5 #define TAGS "xnlhtr01uiva-"
6 #define TAGS_SAVED ""
8 /* programs mapped to m-c, m-m, m-e */
9 #define SHELL {"sh"}
10 #define EDITOR {"vi"}
11 #define MAIL {"mailx", "-f", "+inbox"}
13 /* fbval_t should match framebuffer depth */
14 typedef unsigned int fbval_t;
16 /* tinyfont files for regular, italic, and bold fonts */
17 #define FR "/path/to/font.tf"
18 #define FI NULL
19 #define FB NULL
21 /* foreground and background colors */
22 #define FGCOLOR COLOR0
23 #define BGCOLOR COLORF
25 /* where to write the screen shot */
26 #define SCRSHOT "/tmp/scr"
28 /* lock command password; NULL disables locking */
29 #define PASS NULL
31 /* optimized version of fb_val() */
32 #define FB_VAL(r, g, b) fb_val((r), (g), (b))
34 /* brighten colors 0-7 for bold text */
35 #define BRIGHTEN 1
37 /* black */
38 #define COLOR0 0x000000
39 #define COLOR8 0x555555
40 /* red */
41 #define COLOR1 0xaa0000
42 #define COLOR9 0xff5555
43 /* green */
44 #define COLOR2 0x00aa00
45 #define COLORA 0x55ff55
46 /* yellow */
47 #define COLOR3 0xaa5500
48 #define COLORB 0xffff55
49 /* blue */
50 #define COLOR4 0x0000aa
51 #define COLORC 0x5555ff
52 /* magenta */
53 #define COLOR5 0xaa00aa
54 #define COLORD 0xff55ff
55 /* cyan */
56 #define COLOR6 0x00aaaa
57 #define COLORE 0x55ffff
58 /* white */
59 #define COLOR7 0xaaaaaa
60 #define COLORF 0xffffff