feat(config): change font size, colorscheme and border size

This commit is contained in:
doryan 2025-03-15 20:56:48 +04:00
parent 8c496910d4
commit a2fae17ed4
2 changed files with 514 additions and 516 deletions

View File

@ -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{|}~";

View File

@ -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{|}~";