dwm

my build of dwm
git clone git://git.hanetzok.net/dwm
Log | Files | Refs | README | LICENSE

commit b02370f311c4fad5efb8d7863a5aefc849d1a30d
parent 3e81a3c70495289a5706ec9bf8f1fd0e12f1fe76
Author: Markus Hanetzok <markus@hanetzok.net>
Date:   Sun, 15 Dec 2024 12:13:44 +0100

adjust color scheme

Diffstat:
Mconfig.def.h | 21+++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 2; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no standard bar */ @@ -10,15 +10,16 @@ static const int extrabar = 1; /* 0 means no extra bar */ static const char statussep = ';'; /* separator between statuses */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; -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 col_normbg[] = "#282A36"; +static const char col_normfg[] = "#FF79C6"; +static const char col_normbrd[] = "#282A36"; +static const char col_selbg[] = "#FF79C6"; +static const char col_selfg[] = "#282A36"; +static const char col_selbrd[] = "#FFB86C"; static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + /* fg bg border */ + [SchemeNorm] = { col_normfg, col_normbg, col_normbrd }, + [SchemeSel] = { col_selfg, col_selbg, col_selbrd }, }; typedef struct { @@ -83,7 +84,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_normbg, "-nf", col_normfg, "-sb", col_selbg, "-sf", col_selfg, NULL }; static const char *termcmd[] = { "st", NULL }; static const Key keys[] = {