Fix color typo
This commit is contained in:
@@ -15,8 +15,8 @@ static const int topbar = 1; /* 0 means bottom bar */
|
|||||||
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
|
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { "ebdbb2", "282828", "1d2021" },
|
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
|
||||||
[SchemeSel] = { "282828", "ebdbb2", "ebdbb2" },
|
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
|||||||
@@ -3,25 +3,20 @@
|
|||||||
#include "exitdwm.c"
|
#include "exitdwm.c"
|
||||||
|
|
||||||
/* appearance */
|
/* appearance */
|
||||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
static const unsigned int borderpx = 4; /* border pixel of windows */
|
||||||
static const unsigned int snap = 32; /* snap pixel */
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
||||||
static const unsigned int systrayonleft = 0; /* 0: systray in the right corner, >0: systray on left of status text */
|
static const unsigned int systrayonleft = 1; /* 0: systray in the right corner, >0: systray on left of status text */
|
||||||
static const unsigned int systrayspacing = 2; /* systray spacing */
|
static const unsigned int systrayspacing = 2; /* systray spacing */
|
||||||
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
|
static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
|
||||||
static const int showsystray = 1; /* 0 means no systray */
|
static const int showsystray = 1; /* 0 means no systray */
|
||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
|
static const char *fonts[] = { "JetBrainsMono NF:size=20" };
|
||||||
static const char col_gray1[] = "#222222";
|
|
||||||
static const char col_gray2[] = "#444444";
|
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
|
||||||
static const char col_gray4[] = "#eeeeee";
|
|
||||||
static const char col_cyan[] = "#005577";
|
|
||||||
static const char *colors[][3] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
[SchemeNorm] = { "#ebdbb2", "#282828", "#1d2021" },
|
||||||
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
|
[SchemeSel] = { "#282828", "#ebdbb2", "#ebdbb2" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
|||||||
@@ -147,6 +147,12 @@ static unsigned int defaultrcs = 257;
|
|||||||
*/
|
*/
|
||||||
static unsigned int cursorshape = 2;
|
static unsigned int cursorshape = 2;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Whether to use pixel geometry or cell geometry
|
||||||
|
*/
|
||||||
|
|
||||||
|
static Geometry geometry = CellGeometry;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default columns and rows numbers
|
* Default columns and rows numbers
|
||||||
*/
|
*/
|
||||||
@@ -154,6 +160,13 @@ 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;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default width and height (including borders!)
|
||||||
|
*/
|
||||||
|
|
||||||
|
static unsigned int width = 564;
|
||||||
|
static unsigned int height = 364;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Default colour and shape of the mouse cursor
|
* Default colour and shape of the mouse cursor
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user