feat: config styling done

This commit is contained in:
2026-04-15 13:52:48 +02:00
parent 67c54ec28b
commit f9ec439aec
7 changed files with 532 additions and 22 deletions

View File

@@ -5,8 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
static int borderpx = 2;
static char *font = "JetBrainsMono Nerd Font Mono:pixelsize=16:antialias=true:autohint=true";
static int borderpx = 22;
/* How to align the content in the window when the size of the terminal
* doesn't perfectly match the size of the window. The values are percentages.
@@ -23,7 +23,7 @@ static int anysize_valign = 50;
* 4: value of shell in /etc/passwd
* 5: value of shell in config.h
*/
static char *shell = "/bin/sh";
static char *shell = "/usr/bin/zsh";
char *utmp = NULL;
/* scroll program: to enable use a string like "scroll" */
char *scroll = NULL;
@@ -104,32 +104,32 @@ unsigned int tabspaces = 8;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"black",
"red3",
"green3",
"yellow3",
"blue2",
"magenta3",
"cyan3",
"gray90",
"#333533", // Black
"#ce4257", // Red
"#006d77", // green
"#f9dc5c", // yellow
"#1f7a8c", // blue
"#736ced", // purple
"#507dbc", // cyan
"#E7DFCF", // white
/* 8 bright colors */
"gray50",
"red",
"green",
"yellow",
"#5c5cff",
"magenta",
"cyan",
"white",
"#bfc0c0", // Gray
"#ff758f",
"#83c5be",
"#fcefb4", // yellow
"#00798c", // blue
"#9f9fed", // purple
"#a1c6ea", // cyan
"#d6c4c4", // white
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#afbfbf",
"#555555",
"gray90", /* default foreground colour */
"black", /* default background colour */
"#93a1a1", /* default foreground colour */
"#141c21", /* default background colour */
};