diff options
| -rw-r--r-- | config.def.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h index 131a857..0abc492 100644 --- a/config.def.h +++ b/config.def.h @@ -5,13 +5,13 @@ .alpha = (hex & 0xff) * 257 } // use ipc functionality -static bool ipc = false; +static bool ipc = true; // initially hide all bars static bool hidden = false; // initially draw all bars at the bottom static bool bottom = false; // hide vacant tags -static bool hide_vacant = false; +static bool hide_vacant = true; // vertical pixel padding above and below text static uint32_t vertical_padding = 1; // allow in-line color commands in status text @@ -23,9 +23,9 @@ static bool custom_title = false; // title color use active colors static bool active_color_title = true; // scale -static uint32_t buffer_scale = 1; +static uint32_t buffer_scale = 2; // font -static char *fontstr = "monospace:size=16"; +static char *fontstr = "monospace:size=12"; // tag names static char *tags_names[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |