Xinqi Bao's Git
1 #define SHELL "/bin/bash"
6 #define LINESPACE 1 /* additional pixel between each line */
9 static const char *colorname
[] = {
20 /* Default colors (colorname index) */
21 /* foreground, background, cursor, visual bell */
25 #define BellCol DefaultFG
29 static const char *key
[] = {
30 [XK_Delete
] = "\033[3~",
31 [XK_Home
] = "\033[1~",
33 [XK_Prior
] = "\033[5~",
34 [XK_Next
] = "\033[6~",
36 [XK_Right
] = "\033[C",