From 6cd3aca985963da0b84fc1068b56f3b6bb06336c Mon Sep 17 00:00:00 2001 From: hellisabove Date: Thu, 1 Feb 2024 15:16:40 +0200 Subject: [PATCH] Changed colors from cyberpunk to default --- config.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index 6fcfec7..a27aabd 100644 --- a/config.h +++ b/config.h @@ -26,11 +26,16 @@ static const char norm_border[] = "#091833"; static const char sel_fg[] = "#ea00d9"; static const char sel_bg[] = "#321959"; static const char sel_border[] = "#ea00d9"; -static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { norm_fg, norm_bg, norm_border }, +/*static const char *colors[][3] = { + [SchemeNorm] = { norm_fg, norm_bg, norm_border }, [SchemeSel] = { sel_fg, sel_bg, sel_border }, +};*/ +static const char *colors[][3] = { + /* fg bg border */ + [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + [SchemeSel] = { col_gray4, col_cyan, col_cyan }, }; + /* tagging */ //tag names (upper left) static const char *tags[] = { "1", "2", "3", "4", "5" }; @@ -71,8 +76,8 @@ static const Layout layouts[] = { #define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ -static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn",dmenufont, "-nb", norm_bg, "-nf", norm_fg, "-sb", sel_bg, "-sf", sel_fg, NULL }; -//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", norm_bg, "-nf", norm_fg, "-sb", sel_bg, "-sf", sel_fg, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; //sets st as the default terminal static const char *termcmd[] = { "st", "-e", "zsh", NULL }; /* volume controls */