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 * 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[] = { 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: * 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 * 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 = "/bin/zsh";
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;
@ -198,7 +199,6 @@ static Shortcut shortcuts[] = {
{TERMMOD, XK_Num_Lock, numlock, {.i = 0}}, {TERMMOD, XK_Num_Lock, numlock, {.i = 0}},
}; };
/* /*
* Special keys (change & recompile st.info accordingly) * Special keys (change & recompile st.info accordingly)
* *
@ -464,7 +464,6 @@ static uint selmasks[] = {
* Printable characters in ASCII, used to estimate the advance width * Printable characters in ASCII, used to estimate the advance width
* of single wide characters. * of single wide characters.
*/ */
static char ascii_printable[] = static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?"
" !\"#$%&'()*+,-./0123456789:;<=>?"
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
"`abcdefghijklmnopqrstuvwxyz{|}~"; "`abcdefghijklmnopqrstuvwxyz{|}~";

View File

@ -5,11 +5,12 @@
* *
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html * 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[] = { 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: * 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 * 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 = "/bin/zsh";
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;
@ -198,7 +199,6 @@ static Shortcut shortcuts[] = {
{TERMMOD, XK_Num_Lock, numlock, {.i = 0}}, {TERMMOD, XK_Num_Lock, numlock, {.i = 0}},
}; };
/* /*
* Special keys (change & recompile st.info accordingly) * Special keys (change & recompile st.info accordingly)
* *
@ -464,7 +464,6 @@ static uint selmasks[] = {
* Printable characters in ASCII, used to estimate the advance width * Printable characters in ASCII, used to estimate the advance width
* of single wide characters. * of single wide characters.
*/ */
static char ascii_printable[] = static char ascii_printable[] = " !\"#$%&'()*+,-./0123456789:;<=>?"
" !\"#$%&'()*+,-./0123456789:;<=>?"
"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_" "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
"`abcdefghijklmnopqrstuvwxyz{|}~"; "`abcdefghijklmnopqrstuvwxyz{|}~";