This commit is contained in:
fqbn207
2024-12-17 01:25:46 +01:00
parent b00c7a5c28
commit 7ba2dc839c

View File

@ -1,4 +1,4 @@
static char *font = "TerminessNerdFont:pixelsize=18:antialias=true:autohint=true";
static char *font = "Terminus:pixelsize=18:antialias=true:autohint=true";
static int borderpx = 2;
static char *shell = "/usr/local/bin/bash";
@ -21,33 +21,38 @@ static unsigned int cursorthickness = 2;
static int bellvolume = 0;
char *termname = "xterm";
unsigned int tabspaces = 2;
static const char *colorname[] = {
[0] = "#010101", /* hard contrast: #1d2021 / soft contrast: #32302f */
[1] = "#cc241d", /* red */
[2] = "#98971a", /* green */
[3] = "#d79921", /* yellow */
[4] = "#458588", /* blue */
[5] = "#b16286", /* magenta */
[6] = "#689d6a", /* cyan */
[7] = "#a89984", /* white */
/* Normal colors */
[0] = "#262626", /* black */
[1] = "#ee5396", /* red */
[2] = "#42be65", /* green */
[3] = "#ffe97b", /* yellow */
[4] = "#33b1ff", /* blue */
[5] = "#ff7eb6", /* magenta */
[6] = "#3ddbd9", /* cyan */
[7] = "#dde1e6", /* white */
/* 8 bright colors */
[8] = "#928374", /* black */
[9] = "#fb4934", /* red */
[10] = "#b8bb26", /* green */
[11] = "#fabd2f", /* yellow */
[12] = "#83a598", /* blue */
[13] = "#d3869b", /* magenta */
[14] = "#8ec07c", /* cyan */
[15] = "#ebdbb2", /* white */
/* Bright colors */
[8] = "#393939", /* black */
[9] = "#ee5396", /* red */
[10] = "#42be65", /* green */
[11] = "#ffe97b", /* yellow */
[12] = "#33b1ff", /* blue */
[13] = "#ff7eb6", /* magenta */
[14] = "#3ddbd9", /* cyan */
[15] = "#ffffff", /* white */
/* Background and Foreground */
[256] = "#161616", /* background */
[257] = "#ffffff", /* foreground */
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 7;
unsigned int defaultbg = 0;
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
unsigned int defaultcs = 15;
static unsigned int defaultrcs = 257;
@ -58,7 +63,7 @@ static unsigned int defaultrcs = 257;
* 6: Bar ("|")
* 7: Snowman ("")
*/
static unsigned int cursorshape = 4;
static unsigned int cursorshape = 2;
static unsigned int cols = 80;
static unsigned int rows = 24;
static unsigned int mouseshape = XC_xterm;