dwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 30ef59a5420c3130a6adf6921deed159e4aab3b2
parent b2f796f9c6e8c543f22a45b8b0c930ab2c604f24
Author: AndrewLockVI <andrew@laack.co>
Date:   Mon, 17 Feb 2025 16:36:02 -0600

Updated themeing

Diffstat:
Mconfig.h | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/config.h b/config.h @@ -18,12 +18,12 @@ static const char col_white[] = "#ffffff"; static const char col_lg[] = "#aaaaaa"; static const char col_gray1[] = "#444444"; -static const char col_green[] = "#00ff00"; +static const char col_orange[] = "#d65d0e"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_lg, col_black, col_black }, - [SchemeSel] = { col_white, col_green, col_green }, + [SchemeSel] = { col_white, col_orange, col_orange }, }; /* tagging */ @@ -73,9 +73,9 @@ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() // nice green color. -static const char background[] = "#000000"; -static const char foreground[] = "#00ff00"; -static const char highlight[] = "#224422"; +static const char background[] = "#282828"; +static const char foreground[] = "#ebdbb2"; +static const char highlight[] = "#a89984"; static const char *dmenucmd[] = {"/home/andrew/bin/dmenu.sh", background, foreground, highlight, NULL}; static const char *endcmd[] = {"/home/andrew/bin/power.sh", background, foreground, highlight, NULL}; @@ -164,7 +164,7 @@ static const Key keys[] = { //{ MODKEY|ShiftMask, XK_Down, focusmon, {.i = +1 } }, //{ MODKEY|ShiftMask, XK_Right, tagmon, {.i = +1 } }, - { MODKEY|ShiftMask, XK_period, tagmon, {.i = -1 } }, + { MODKEY|ShiftMask, XK_n, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_r, quit, {0} },