diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-27 15:43:56 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-27 15:43:56 +0300 |
commit | aac3ff410ea8b149bfbfba2712fbfbd283623df7 (patch) | |
tree | b75d2f4ba7c888e07fc7d7f7dfb6056884f4c09b /config.def.h | |
parent | bd2586ead2b8004e8c78819c4f7c57b9a1128b2e (diff) | |
download | dwm-aac3ff410ea8b149bfbfba2712fbfbd283623df7.tar.gz |
feat: colorize statusbar
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index 6425727..44bc6e9 100644 --- a/config.def.h +++ b/config.def.h @@ -6,11 +6,11 @@ static const unsigned int gappx = 28; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int horizpadbar = 4; /* horizontal padding for statusbar */ -static const int vertpadbar = 4; /* vertical padding for statusbar */ +static const int vertpadbar = 6; /* vertical padding for statusbar */ static const int topbar = 1; /* 0 means bottom bar */ static const char *fonts[] = { "monospace:size=10" }; static const char dmenufont[] = "monospace:size=10"; -static const char col_gray1[] = "#222222"; +static const char col_gray1[] = "#111111"; static const char col_gray2[] = "#444444"; static const char col_gray3[] = "#bbbbbb"; static const char col_gray4[] = "#eeeeee"; @@ -20,6 +20,14 @@ static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, [SchemeSel] = { col_gray4, col_cyan, col_yellow }, + + [SchemeStatus] = { col_gray3, col_gray1, "#000000" }, // Statusbar right {text,background,not used but cannot be empty} + + [SchemeTagsSel] = { col_gray1, col_yellow, "#000000" }, // Tagbar left selected {text,background,not used but cannot be empty} + [SchemeTagsNorm] = { col_gray3, col_gray1, "#000000" }, // Tagbar left unselected {text,background,not used but cannot be empty} + + [SchemeInfoSel] = { col_gray3, col_gray1, "#000000" }, // infobar middle selected {text,background,not used but cannot be empty} + [SchemeInfoNorm] = { col_gray3, col_gray1, "#000000" }, // infobar middle unselected {text,background,not used but cannot be empty} }; /* tagging */ |