diff --git a/config.h b/config.h index 1bb1dcd..ae3dc13 100644 --- a/config.h +++ b/config.h @@ -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 diff --git a/drw.o b/drw.o new file mode 100644 index 0000000..1250114 Binary files /dev/null and b/drw.o differ diff --git a/dwm b/dwm new file mode 100755 index 0000000..c85b330 Binary files /dev/null and b/dwm differ diff --git a/dwm.o b/dwm.o new file mode 100644 index 0000000..981b9cb Binary files /dev/null and b/dwm.o differ diff --git a/util.o b/util.o new file mode 100644 index 0000000..a853f4c Binary files /dev/null and b/util.o differ