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