JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed backspace problem, updated terminfo entry and moved TNAME in config.h.
[st.git] / config.h
index 185b3ff..c3c4e41 100644 (file)
--- a/config.h
+++ b/config.h
@@ -1,6 +1,5 @@
-#define SHELL "/bin/bash"
 #define TAB    8
-
+#define TNAME "st-256color"
 #define FONT "6x13"
 #define BOLDFONT FONT"bold"
 #define BORDER 2
@@ -8,13 +7,21 @@
 /* Terminal colors */
 static const char *colorname[] = {
        "black",
-       "red",
-       "green",
-       "yellow",
-       "blue",
-       "magenta",
-       "cyan",
-       "white",
+       "#CC0000",
+       "#4E9A06",
+       "#C4A000",
+       "#3465A4",
+       "#75507B",
+       "#06989A",
+       "#888a85",
+       "#555753",
+       "#EF2929",
+       "#8AE234",
+       "#FCE94F",
+       "#729FCF",
+       "#AD7FA8",
+       "#34E2E2",
+       "#EEEEEC"
 };
 
 /* Default colors (colorname index) */
@@ -26,6 +33,7 @@ static const char *colorname[] = {
 
 /* special keys */
 static Key key[] = {
+       { XK_BackSpace, "\177" },
        { XK_Delete, "\033[3~" },
        { XK_Home,   "\033[1~" },
        { XK_End,    "\033[4~" },