Changed colors from cyberpunk to default

This commit is contained in:
hellisabove
2024-02-01 15:16:40 +02:00
parent bb23d258af
commit 6cd3aca985
+10 -5
View File
@@ -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 */