Mercurial > gbwm
changeset 6:49a8b21b0f95
opinionated defaults
author | Atarwn Gard <a@qwa.su> |
---|---|
date | Sun, 12 Oct 2025 21:20:25 +0500 |
parents | 0e6f1ea0ef26 |
children | 180e42b65105 |
files | default.config.h |
diffstat | 1 files changed, 17 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/default.config.h Sun Oct 12 21:05:55 2025 +0500 +++ b/default.config.h Sun Oct 12 21:20:25 2025 +0500 @@ -20,17 +20,26 @@ // Configuration static const int padding = 8; static const int border_width = 2; -static const char *col_border_normal = "#444444"; -static const char *col_border_focused = "#4a90e2"; -static const char *col_bg = "#000000"; -static const char *col_fg = "#ffffff"; -static const char *col_sel = "#4a90e2"; -static const char *overlay_font = "LiberationMono:size=48"; -static const char *root_bg = "#000000"; +static const char col_border_normal[] = "#5a3f47"; +static const char col_border_focused[] = "#ffb4a9"; +static const char col_bg[] = "#1f1a1b"; +static const char col_fg[] = "#ebe0e1"; +static const char col_sel[] = "#5a3f47"; +static const char overlay_font[] = "LiberationMono:size=48"; +static const char dmenu_font[] = "LiberationMono:size=12"; // You can cut-out this line if you don't use dmenu +static const char root_bg[] = "#1f1a1b"; // Commands static const char *termcmd[] = { "st", NULL }; -static const char *menucmd[] = { "dmenu_run", NULL }; +static const char *menucmd[] = { + "dmenu_run", + "-fn", dmenu_font, + "-nb", col_bg, + "-nf", col_fg, + "-sb", col_sel, + "-sf", col_border_focused, + NULL +}; static const char *scrotcmd[] = { "scrot", NULL }; // Key bindings