diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2012-02-15 19:33:48 +0100 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2012-02-15 19:33:48 +0100 |
commit | adf5d2e32a74704778e60e71be5425b7d7fff3e2 (patch) | |
tree | d4da30d5797e6b9ebece1d3b0348631ac906acfd /config.def.h | |
parent | 62d380947ee9fb8a1d5678985b1a729cfd4310b4 (diff) | |
download | st-adf5d2e32a74704778e60e71be5425b7d7fff3e2.tar.gz st-adf5d2e32a74704778e60e71be5425b7d7fff3e2.tar.bz2 |
show dark cursor when unfocused.
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index f1bd91e..169bcdd 100644 --- a/config.def.h +++ b/config.def.h @@ -32,13 +32,15 @@ static const char *colorname[] = { /* more colors can be added to use with DefaultXX */ "#cccccc", + "#333333", }; /* Default colors (colorname index) - foreground, background, cursor */ -#define DefaultFG 7 -#define DefaultBG 0 -#define DefaultCS 16 + foreground, background, cursor, unfocused cursor */ +#define DefaultFG 7 +#define DefaultBG 0 +#define DefaultCS 16 +#define DefaultUCS 17 /* Special keys (change & recompile st.info accordingly) Keep in mind that kpress() in st.c hardcodes some keys. |