From f925fe58934c0b460d10b68c6c90c1aba00a9bb0 Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Fri, 22 Apr 2022 17:54:20 +0100 Subject: [PATCH] theme: change window.label.text.justify default to center It just looks better :) --- docs/themerc | 2 +- src/theme.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/themerc b/docs/themerc index ec8c001e..4e559f5d 100644 --- a/docs/themerc +++ b/docs/themerc @@ -15,7 +15,7 @@ window.inactive.title.bg.color: #f6f5f4 # window titlebar text window.active.label.text.color: #000000 window.inactive.label.text.color: #000000 -window.label.text.justify: left +window.label.text.justify: center # window buttons window.active.button.unpressed.image.color: #000000 diff --git a/src/theme.c b/src/theme.c index 1a745f17..7cb56d69 100644 --- a/src/theme.c +++ b/src/theme.c @@ -104,7 +104,7 @@ theme_builtin(struct theme *theme) parse_hexstr("#000000", theme->window_active_label_text_color); parse_hexstr("#000000", theme->window_inactive_label_text_color); - theme->window_label_text_justify = parse_justification("Left"); + theme->window_label_text_justify = parse_justification("Center"); parse_hexstr("#000000", theme->window_active_button_menu_unpressed_image_color); -- 2.52.0