diff options
Diffstat (limited to 'st-custom/config.h')
-rw-r--r-- | st-custom/config.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/st-custom/config.h b/st-custom/config.h index 248a84f..96a81f4 100644 --- a/st-custom/config.h +++ b/st-custom/config.h @@ -7,6 +7,15 @@ */ static char font[] = "monospace:size=14:antialias=true:autohint=true"; static int borderpx = 2; + +/* + * What program is execed by st depends of these precedence rules: + * 1: program passed with -e + * 2: utmp option + * 3: SHELL environment variable + * 4: value of shell in /etc/passwd + * 5: value of shell in config.h + */ static char shell[] = "/bin/sh"; static char *utmp = NULL; static char stty_args[] = "stty raw -echo -iexten echonl"; @@ -96,6 +105,13 @@ static unsigned int defaultfg = 7; static unsigned int defaultbg = 0; static unsigned int defaultcs = 256; +/* + * Default colour and shape of the mouse cursor + */ +static unsigned int mouseshape = XC_xterm; +static unsigned int mousefg = 7; +static unsigned int mousebg = 0; + /* background opacity */ static const int alpha = 0xCC; /* 80% alpha */ |