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
*/
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;
/*
@ -16,7 +16,7 @@ static int borderpx = 2;
* 4: value of shell in /etc/passwd
* 5: value of shell in config.h
*/
static char *shell = "/bin/sh";
static char *shell = "/bin/tmux";
char *utmp = NULL;
/* scroll program: to enable use a string like "scroll" */
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
* it
*/
static int bellvolume = 0;
static int bellvolume = 100;
/* default TERM value */
char *termname = "st-256color";
@ -91,37 +91,37 @@ char *termname = "st-256color";
*
* stty tabs
*/
unsigned int tabspaces = 8;
unsigned int tabspaces = 4;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"black",
"red3",
"green3",
"yellow3",
"blue2",
"magenta3",
"cyan3",
"gray90",
"#010101",
"#d23f38",
"#37d24c",
"#ccd436",
"#356bd5",
"#c935d4",
"#35d4c6",
"#7a7a7a",
/* 8 bright colors */
"gray50",
"red",
"green",
"yellow",
"#5c5cff",
"magenta",
"cyan",
"white",
"#010101",
"#d23f38",
"#37d24c",
"#ccd436",
"#356bd5",
"#c935d4",
"#35d4c6",
"#7a7a7a",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
"black", /* default background colour */
"#c935d4", /* default foreground colour */
"#010101", /* default background colour */
};