update
This commit is contained in:
parent
d71ac6adfc
commit
081105d600
2 changed files with 5 additions and 5 deletions
|
|
@ -65,7 +65,7 @@ static char *url_opener = "xdg-open";
|
|||
* 4: value of shell in /etc/passwd
|
||||
* 5: value of shell in config.h
|
||||
*/
|
||||
static char *shell = "/bin/sh";
|
||||
static char *shell = "/usr/bin/fish";
|
||||
char *utmp = NULL;
|
||||
/* scroll program: to enable use a string like "scroll" */
|
||||
char *scroll = NULL;
|
||||
|
|
@ -190,7 +190,7 @@ float grad_alpha = 0.54; //alpha value that'll change
|
|||
float stat_alpha = 0.46; //constant alpha value that'll get added to grad_alpha
|
||||
#endif // ALPHA_GRADIENT_PATCH
|
||||
#if ALPHA_FOCUS_HIGHLIGHT_PATCH
|
||||
float alphaUnfocused = 0.6;
|
||||
float alphaUnfocused = 0.75;
|
||||
#endif // ALPHA_FOCUS_HIGHLIGHT_PATCH
|
||||
#endif // ALPHA_PATCH
|
||||
|
||||
|
|
@ -231,7 +231,7 @@ const char *colorname[] = {
|
|||
*/
|
||||
#if ALPHA_PATCH && ALPHA_FOCUS_HIGHLIGHT_PATCH
|
||||
unsigned int defaultbg = 0;
|
||||
unsigned int bg = 17, bgUnfocused = 16;
|
||||
unsigned int bg = 0, bgUnfocused = 0;
|
||||
#else
|
||||
unsigned int defaultbg = 0;
|
||||
#endif // ALPHA_FOCUS_HIGHLIGHT_PATCH
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* when including this patch.
|
||||
* https://st.suckless.org/patches/alpha/
|
||||
*/
|
||||
#define ALPHA_PATCH 0
|
||||
#define ALPHA_PATCH 1
|
||||
|
||||
/* The alpha focus highlight patch allows the user to specify two distinct opacity values or
|
||||
* background colors in order to easily differentiate between focused and unfocused terminal
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
/* Adds gradient transparency to st, depends on the alpha patch.
|
||||
* https://st.suckless.org/patches/gradient/
|
||||
*/
|
||||
#define ALPHA_GRADIENT_PATCH 1
|
||||
#define ALPHA_GRADIENT_PATCH 0
|
||||
|
||||
/* Allows for the initial size of the terminal to be specified as pixel width and height
|
||||
* using the -G command line option. Can be combined with the anysize patch to also allow
|
||||
|
|
|
|||
Loading…
Reference in a new issue