Changed colors from cyberpunk to default
This commit is contained in:
@@ -26,11 +26,16 @@ static const char norm_border[] = "#091833";
|
|||||||
static const char sel_fg[] = "#ea00d9";
|
static const char sel_fg[] = "#ea00d9";
|
||||||
static const char sel_bg[] = "#321959";
|
static const char sel_bg[] = "#321959";
|
||||||
static const char sel_border[] = "#ea00d9";
|
static const char sel_border[] = "#ea00d9";
|
||||||
static const char *colors[][3] = {
|
/*static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
[SchemeNorm] = { norm_fg, norm_bg, norm_border },
|
||||||
[SchemeNorm] = { norm_fg, norm_bg, norm_border },
|
|
||||||
[SchemeSel] = { sel_fg, sel_bg, sel_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 */
|
/* tagging */
|
||||||
//tag names (upper left)
|
//tag names (upper left)
|
||||||
static const char *tags[] = { "1", "2", "3", "4", "5" };
|
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 } }
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
||||||
/* commands */
|
/* commands */
|
||||||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
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", 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", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||||
//sets st as the default terminal
|
//sets st as the default terminal
|
||||||
static const char *termcmd[] = { "st", "-e", "zsh", NULL };
|
static const char *termcmd[] = { "st", "-e", "zsh", NULL };
|
||||||
/* volume controls */
|
/* volume controls */
|
||||||
|
|||||||
Reference in New Issue
Block a user