Mercurial > gbwm
comparison default.config.h @ 6:49a8b21b0f95
opinionated defaults
author | Atarwn Gard <a@qwa.su> |
---|---|
date | Sun, 12 Oct 2025 21:20:25 +0500 |
parents | f1f332156693 |
children |
comparison
equal
deleted
inserted
replaced
5:0e6f1ea0ef26 | 6:49a8b21b0f95 |
---|---|
18 }; | 18 }; |
19 | 19 |
20 // Configuration | 20 // Configuration |
21 static const int padding = 8; | 21 static const int padding = 8; |
22 static const int border_width = 2; | 22 static const int border_width = 2; |
23 static const char *col_border_normal = "#444444"; | 23 static const char col_border_normal[] = "#5a3f47"; |
24 static const char *col_border_focused = "#4a90e2"; | 24 static const char col_border_focused[] = "#ffb4a9"; |
25 static const char *col_bg = "#000000"; | 25 static const char col_bg[] = "#1f1a1b"; |
26 static const char *col_fg = "#ffffff"; | 26 static const char col_fg[] = "#ebe0e1"; |
27 static const char *col_sel = "#4a90e2"; | 27 static const char col_sel[] = "#5a3f47"; |
28 static const char *overlay_font = "LiberationMono:size=48"; | 28 static const char overlay_font[] = "LiberationMono:size=48"; |
29 static const char *root_bg = "#000000"; | 29 static const char dmenu_font[] = "LiberationMono:size=12"; // You can cut-out this line if you don't use dmenu |
30 static const char root_bg[] = "#1f1a1b"; | |
30 | 31 |
31 // Commands | 32 // Commands |
32 static const char *termcmd[] = { "st", NULL }; | 33 static const char *termcmd[] = { "st", NULL }; |
33 static const char *menucmd[] = { "dmenu_run", NULL }; | 34 static const char *menucmd[] = { |
35 "dmenu_run", | |
36 "-fn", dmenu_font, | |
37 "-nb", col_bg, | |
38 "-nf", col_fg, | |
39 "-sb", col_sel, | |
40 "-sf", col_border_focused, | |
41 NULL | |
42 }; | |
34 static const char *scrotcmd[] = { "scrot", NULL }; | 43 static const char *scrotcmd[] = { "scrot", NULL }; |
35 | 44 |
36 // Key bindings | 45 // Key bindings |
37 static Key keys[] = { | 46 static Key keys[] = { |
38 /* modifier key function argument */ | 47 /* modifier key function argument */ |