diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-06-16 02:33:38 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2009-06-16 02:33:38 +0200 |
commit | 2e37752961f439c33614a9d8469d7c297f0465cb (patch) | |
tree | 6c15000913cfef0ceb3455dfea08dacd22b0aeec /config.h | |
parent | 8b4bfe31ec1075316dbb2e7d21753771ae3e5590 (diff) | |
download | st-2e37752961f439c33614a9d8469d7c297f0465cb.tar.gz st-2e37752961f439c33614a9d8469d7c297f0465cb.tar.bz2 |
added/removed files, updated Makefile.
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 39 |
1 files changed, 39 insertions, 0 deletions
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" }, +}; |