feat(config): change font size, colorscheme and border size
This commit is contained in:
parent
8c496910d4
commit
a2fae17ed4
13
config.def.h
13
config.def.h
|
@ -5,11 +5,12 @@
|
|||
*
|
||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||
*/
|
||||
static char *font = "FiraCode Nerd Font Propo:pixelsize=13:antialias=true:autohint=true";
|
||||
static char *font =
|
||||
"FiraCode Nerd Font Propo:pixelsize=14:antialias=true:autohint=true";
|
||||
static char *font2[] = {
|
||||
"Noto Color Emoji:pixelsize=13:antialias=true:autohint=true",
|
||||
"Noto Color Emoji:pixelsize=14:antialias=true:autohint=true",
|
||||
};
|
||||
static int borderpx = 5;
|
||||
static int borderpx = 2;
|
||||
|
||||
/*
|
||||
* What program is execed by st depends of these precedence rules:
|
||||
|
@ -19,7 +20,7 @@ static int borderpx = 5;
|
|||
* 4: value of shell in /etc/passwd
|
||||
* 5: value of shell in config.h
|
||||
*/
|
||||
static char *shell = "/bin/sh";
|
||||
static char *shell = "/bin/zsh";
|
||||
char *utmp = NULL;
|
||||
/* scroll program: to enable use a string like "scroll" */
|
||||
char *scroll = NULL;
|
||||
|
@ -198,7 +199,6 @@ static Shortcut shortcuts[] = {
|
|||
{TERMMOD, XK_Num_Lock, numlock, {.i = 0}},
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* Special keys (change & recompile st.info accordingly)
|
||||
*
|
||||
|
@ -464,7 +464,6 @@ static uint selmasks[] = {
|
|||
* Printable characters in ASCII, used to estimate the advance width
|
||||
* of single wide characters.
|
||||
*/
|
||||
static char ascii_printable[] =
|
||||
" !\"#$%&'()*+,-./0123456789:;<=>?"
|
||||
static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?"
|
||||
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
||||
"`abcdefghijklmnopqrstuvwxyz{|}~";
|
||||
|
|
13
config.h
13
config.h
|
@ -5,11 +5,12 @@
|
|||
*
|
||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||
*/
|
||||
static char *font = "FiraCode Nerd Font Propo:pixelsize=13:antialias=true:autohint=true";
|
||||
static char *font =
|
||||
"FiraCode Nerd Font Propo:pixelsize=14:antialias=true:autohint=true";
|
||||
static char *font2[] = {
|
||||
"Noto Color Emoji:pixelsize=13:antialias=true:autohint=true",
|
||||
"Noto Color Emoji:pixelsize=14:antialias=true:autohint=true",
|
||||
};
|
||||
static int borderpx = 5;
|
||||
static int borderpx = 2;
|
||||
|
||||
/*
|
||||
* What program is execed by st depends of these precedence rules:
|
||||
|
@ -19,7 +20,7 @@ static int borderpx = 5;
|
|||
* 4: value of shell in /etc/passwd
|
||||
* 5: value of shell in config.h
|
||||
*/
|
||||
static char *shell = "/bin/sh";
|
||||
static char *shell = "/bin/zsh";
|
||||
char *utmp = NULL;
|
||||
/* scroll program: to enable use a string like "scroll" */
|
||||
char *scroll = NULL;
|
||||
|
@ -198,7 +199,6 @@ static Shortcut shortcuts[] = {
|
|||
{TERMMOD, XK_Num_Lock, numlock, {.i = 0}},
|
||||
};
|
||||
|
||||
|
||||
/*
|
||||
* Special keys (change & recompile st.info accordingly)
|
||||
*
|
||||
|
@ -464,7 +464,6 @@ static uint selmasks[] = {
|
|||
* Printable characters in ASCII, used to estimate the advance width
|
||||
* of single wide characters.
|
||||
*/
|
||||
static char ascii_printable[] =
|
||||
" !\"#$%&'()*+,-./0123456789:;<=>?"
|
||||
static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?"
|
||||
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
|
||||
"`abcdefghijklmnopqrstuvwxyz{|}~";
|
||||
|
|
Loading…
Reference in New Issue