Change config options to my liking

This commit is contained in:
cannoli-fruit 2026-07-14 01:03:46 -04:00
commit 455d655445

View file

@ -5,7 +5,7 @@
* *
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/ */
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true"; static char *font = "Iosevka Term:pixelsize=24:antialias=true:autohint=true";
static int borderpx = 2; static int borderpx = 2;
/* /*
@ -16,7 +16,7 @@ static int borderpx = 2;
* 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/tmux";
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;
@ -71,7 +71,7 @@ static unsigned int cursorthickness = 2;
* bell volume. It must be a value between -100 and 100. Use 0 for disabling * bell volume. It must be a value between -100 and 100. Use 0 for disabling
* it * it
*/ */
static int bellvolume = 0; static int bellvolume = 100;
/* default TERM value */ /* default TERM value */
char *termname = "st-256color"; char *termname = "st-256color";
@ -91,37 +91,37 @@ char *termname = "st-256color";
* *
* stty tabs * stty tabs
*/ */
unsigned int tabspaces = 8; unsigned int tabspaces = 4;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* 8 normal colors */ /* 8 normal colors */
"black", "#010101",
"red3", "#d23f38",
"green3", "#37d24c",
"yellow3", "#ccd436",
"blue2", "#356bd5",
"magenta3", "#c935d4",
"cyan3", "#35d4c6",
"gray90", "#7a7a7a",
/* 8 bright colors */ /* 8 bright colors */
"gray50", "#010101",
"red", "#d23f38",
"green", "#37d24c",
"yellow", "#ccd436",
"#5c5cff", "#356bd5",
"magenta", "#c935d4",
"cyan", "#35d4c6",
"white", "#7a7a7a",
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", "#cccccc",
"#555555", "#555555",
"gray90", /* default foreground colour */ "#c935d4", /* default foreground colour */
"black", /* default background colour */ "#010101", /* default background colour */
}; };