Changed colorscheme to cyberpunk
This commit is contained in:
@@ -12,22 +12,24 @@ static const int showsystray = 1; /* 0 means no systray */
|
|||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char panel[][20] = { "xfce4-panel", "Xfce4-panel" }; /* name & cls of panel win */
|
static const char panel[][20] = { "xfce4-panel", "Xfce4-panel" }; /* name & cls of panel win */
|
||||||
static const char *fonts[] = { "monospace:size=12", "fontawesome:size=12" };
|
static const char *fonts[] = { "monospace:size=14", "fontawesome:size=14" };
|
||||||
static const char dmenufont[] = "monospace:size=11";
|
static const char dmenufont[] = "monospace:size=11";
|
||||||
//background color
|
//background color
|
||||||
static const char col_gray1[] = "#222222";
|
static const char col_gray1[] = "#222222";
|
||||||
////inactive window border color
|
|
||||||
static const char col_gray2[] = "#444444";
|
static const char col_gray2[] = "#444444";
|
||||||
////font color
|
|
||||||
static const char col_gray3[] = "#bbbbbb";
|
static const char col_gray3[] = "#bbbbbb";
|
||||||
////current tag and current window font color
|
|
||||||
static const char col_gray4[] = "#eeeeee";
|
static const char col_gray4[] = "#eeeeee";
|
||||||
////Top bar second color (blue) and active window border color
|
|
||||||
static const char col_cyan[] = "#f59542";
|
static const char col_cyan[] = "#f59542";
|
||||||
|
static const char norm_fg[] = "#0abdc6";
|
||||||
|
static const char norm_bg[] = "#091833";
|
||||||
|
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] = {
|
static const char *colors[][3] = {
|
||||||
/* fg bg border */
|
/* fg bg border */
|
||||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
[SchemeNorm] = { norm_fg, norm_bg, norm_border },
|
||||||
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
|
[SchemeSel] = { sel_fg, sel_bg, sel_border },
|
||||||
};
|
};
|
||||||
/* tagging */
|
/* tagging */
|
||||||
//tag names (upper left)
|
//tag names (upper left)
|
||||||
@@ -69,7 +71,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", 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
|
//sets st as the default terminal
|
||||||
static const char *termcmd[] = { "st", NULL };
|
static const char *termcmd[] = { "st", NULL };
|
||||||
//volume controls
|
//volume controls
|
||||||
|
|||||||
Reference in New Issue
Block a user