Changed colorscheme to cyberpunk

This commit is contained in:
hellisabove
2023-06-08 23:31:01 +03:00
parent 1d957a9e83
commit 8abb0e6552
5 changed files with 11 additions and 8 deletions
+11 -8
View File
@@ -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 topbar = 1; /* 0 means bottom bar */
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";
//background color
static const char col_gray1[] = "#222222";
////inactive window border color
static const char col_gray2[] = "#444444";
////font color
static const char col_gray3[] = "#bbbbbb";
////current tag and current window font color
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 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] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
[SchemeSel] = { col_gray4, col_cyan, col_cyan },
[SchemeNorm] = { norm_fg, norm_bg, norm_border },
[SchemeSel] = { sel_fg, sel_bg, sel_border },
};
/* tagging */
//tag names (upper left)
@@ -69,7 +71,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", 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", NULL };
//volume controls
BIN
View File
Binary file not shown.
Executable
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.