diff options
Diffstat (limited to '.config/guix/modules/dwm/config.def.h')
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h index 5ee91cc..ac83b81 100644 --- a/.config/guix/modules/dwm/config.def.h +++ b/.config/guix/modules/dwm/config.def.h @@ -5,11 +5,11 @@ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int gappx = 8; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ -static const int topbar = 0; /* 0 means bottom bar */ +static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "Terminus:size=10", "fontawesome:size=10" }; static const char dmenufont[] = "Terminus:size=10"; -static const char col_white[] = "#eeeeee"; -static const char col_gray[] = "#aaaaaa"; +static const char col_white[] = "#ffffff"; +static const char col_gray[] = "#888888"; static const char col_black[] = "#000000"; static const unsigned int baralpha = 0xd0; static const unsigned int borderalpha = 0xd0; @@ -70,7 +70,7 @@ static const Layout layouts[] = { /* commands */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ /* tools */ -static const char *dmenucmd[] = { "dmenu_run", "-b", "-m", dmenumon, "-fn", dmenufont, "-nb", col_black, "-nf", col_gray, "-sb", col_black, "-sf", col_white, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_black, "-nf", col_gray, "-sb", col_black, "-sf", col_white, NULL }; /* brightness control */ static const char *lowerbgt[] = { "brightnessctl", "set", "5%-", NULL }; static const char *upperbgt[] = { "brightnessctl", "set", "5%+", NULL }; |