diff options
author | pancake <pancake@nopcode.org> | 2010-08-30 23:49:15 +0200 |
---|---|---|
committer | pancake <pancake@nopcode.org> | 2010-08-30 23:49:15 +0200 |
commit | ca1f6675a16e306449246868d075a362fc57bead (patch) | |
tree | 3bbbcb665279b729d406d4157beb47a129379890 /config.def.h | |
parent | dcc7f842bbea23c2e01af0c66d323663ecfbc58c (diff) | |
download | st-ca1f6675a16e306449246868d075a362fc57bead.tar.gz st-ca1f6675a16e306449246868d075a362fc57bead.zip |
fix build
use config.def.h mechanism
add SHELL in config.h
Diffstat (limited to '')
-rw-r--r-- | config.def.h (renamed from config.h) | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -3,6 +3,7 @@ #define FONT "6x13" #define BOLDFONT "6x13bold" #define BORDER 2 +#define SHELL "/bin/sh" /* Terminal colors */ static const char *colorname[] = { @@ -33,11 +34,11 @@ static const char *colorname[] = { /* special keys */ static Key key[] = { { XK_BackSpace, "\177" }, - { XK_Delete, "\033[3~" }, - { XK_Home, "\033[1~" }, - { XK_End, "\033[4~" }, - { XK_Prior, "\033[5~" }, - { XK_Next, "\033[6~" }, + { XK_Delete, "\033[3~" }, + { XK_Home, "\033[1~" }, + { XK_End, "\033[4~" }, + { XK_Prior, "\033[5~" }, + { XK_Next, "\033[6~" }, { XK_F1, "\033OP" }, { XK_F2, "\033OQ" }, { XK_F3, "\033OR" }, |