X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.h;h=c3c4e419cc118d253f91b3d62e35fb2d8f356a8d;hb=ce3f4fc647be3ab28f934db9365445a56ebd85bf;hp=0b0b36dcebe72b8d5294e4b4e0bd3ace7a666689;hpb=d01c55c9ab58588d98239c515aa8db6443ae75ca;p=st.git diff --git a/config.h b/config.h index 0b0b36d..c3c4e41 100644 --- a/config.h +++ b/config.h @@ -1,5 +1,5 @@ #define TAB 8 - +#define TNAME "st-256color" #define FONT "6x13" #define BOLDFONT FONT"bold" #define BORDER 2 @@ -7,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) */ @@ -25,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~" },