X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=config.h;fp=config.h;h=c01354dcb53437c8e824e5a7ae12a9a7a94cdab9;hb=2e37752961f439c33614a9d8469d7c297f0465cb;hp=0000000000000000000000000000000000000000;hpb=8b4bfe31ec1075316dbb2e7d21753771ae3e5590;p=st.git diff --git a/config.h b/config.h new file mode 100644 index 0000000..c01354d --- /dev/null +++ b/config.h @@ -0,0 +1,39 @@ +#define SHELL "/bin/bash" +#define TAB 8 + +#define FONT "fixed" +#define BORDER 3 +#define LINESPACE 1 /* additional pixel between each line */ + +/* Terminal colors */ +static char* colorname[] = { + "black", + "red", + "green", + "yellow", + "blue", + "magenta", + "cyan", + "white", +}; + +/* Default colors (colorname index) */ +/* foreground, background, cursor, visual bell */ +#define DefaultFG 7 +#define DefaultBG 0 +#define DefaultCS 1 +#define BellCol DefaultFG + + +/* special keys */ +static Key key[] = { + { XK_Delete, "\033[3~" }, + { XK_Home, "\033[1~" }, + { XK_End, "\033[4~" }, + { XK_Prior, "\033[5~" }, + { XK_Next, "\033[6~" }, + { XK_Left, "\033[D" }, + { XK_Right, "\033[C" }, + { XK_Up, "\033[A" }, + { XK_Down, "\033[B" }, +};