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