This commit is contained in:
Ray Andrew 2024-10-20 23:35:02 -05:00
parent d71ac6adfc
commit 081105d600
2 changed files with 5 additions and 5 deletions

View file

@ -65,7 +65,7 @@ static char *url_opener = "xdg-open";
* 4: value of shell in /etc/passwd * 4: value of shell in /etc/passwd
* 5: value of shell in config.h * 5: value of shell in config.h
*/ */
static char *shell = "/bin/sh"; static char *shell = "/usr/bin/fish";
char *utmp = NULL; char *utmp = NULL;
/* scroll program: to enable use a string like "scroll" */ /* scroll program: to enable use a string like "scroll" */
char *scroll = NULL; 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 float stat_alpha = 0.46; //constant alpha value that'll get added to grad_alpha
#endif // ALPHA_GRADIENT_PATCH #endif // ALPHA_GRADIENT_PATCH
#if ALPHA_FOCUS_HIGHLIGHT_PATCH #if ALPHA_FOCUS_HIGHLIGHT_PATCH
float alphaUnfocused = 0.6; float alphaUnfocused = 0.75;
#endif // ALPHA_FOCUS_HIGHLIGHT_PATCH #endif // ALPHA_FOCUS_HIGHLIGHT_PATCH
#endif // ALPHA_PATCH #endif // ALPHA_PATCH
@ -231,7 +231,7 @@ const char *colorname[] = {
*/ */
#if ALPHA_PATCH && ALPHA_FOCUS_HIGHLIGHT_PATCH #if ALPHA_PATCH && ALPHA_FOCUS_HIGHLIGHT_PATCH
unsigned int defaultbg = 0; unsigned int defaultbg = 0;
unsigned int bg = 17, bgUnfocused = 16; unsigned int bg = 0, bgUnfocused = 0;
#else #else
unsigned int defaultbg = 0; unsigned int defaultbg = 0;
#endif // ALPHA_FOCUS_HIGHLIGHT_PATCH #endif // ALPHA_FOCUS_HIGHLIGHT_PATCH

View file

@ -14,7 +14,7 @@
* when including this patch. * when including this patch.
* https://st.suckless.org/patches/alpha/ * 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 /* 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 * 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. /* Adds gradient transparency to st, depends on the alpha patch.
* https://st.suckless.org/patches/gradient/ * 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 /* 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 * using the -G command line option. Can be combined with the anysize patch to also allow