From 5397e10a0f18963f0718a33b1ae943a3db54e954 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 28 Apr 2008 16:34:37 +0200 Subject: [PATCH] [config] Do not set background by default Signed-off-by: Julien Danjou --- common/configopts.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/configopts.c b/common/configopts.c index 40bcde31a..99252d6c0 100644 --- a/common/configopts.c +++ b/common/configopts.c @@ -195,11 +195,11 @@ cfg_opt_t titlebar_opts[] = /** Titlebar height. Set to 0 for auto. */ CFG_INT((char *) "height", 0, CFGF_NONE), /** Titlebar markup string for normal windows. */ - CFG_STR((char *) "text_normal", (char *) "", CFGF_NONE), + CFG_STR((char *) "text_normal", (char *) "<title/>", CFGF_NONE), /** Titlebar markup string for focused windows. */ - CFG_STR((char *) "text_focus", (char *) "<bg color=\"#535d6c\"/><title/>", CFGF_NONE), + CFG_STR((char *) "text_focus", (char *) "<title/>", CFGF_NONE), /** Titlebar markup string for urgent windows. */ - CFG_STR((char *) "text_urgent", (char *) "<bg color=\"#ff4500\"/><title/>", CFGF_NONE), + CFG_STR((char *) "text_urgent", (char *) "<title/>", CFGF_NONE), CFG_AWESOME_END() }; /** This section defines general options. */ @@ -280,11 +280,11 @@ cfg_opt_t widget_taglist_opts[] = /** Mouse bindings. */ CFG_SEC((char *) "mouse", mouse_taglist_opts, CFGF_MULTI), /** Markup title string for normal tags */ - CFG_STR((char *) "text_normal", (char *) " <text align=\"center\"/><bg color=\"#444444\"/><title/> ", CFGF_NONE), + CFG_STR((char *) "text_normal", (char *) " <text align=\"center\"/><title/> ", CFGF_NONE), /** Markup title string for selected tags. */ - CFG_STR((char *) "text_focus", (char *) " <text align=\"center\"/><bg color=\"#535d6c\"/><title/> ", CFGF_NONE), + CFG_STR((char *) "text_focus", (char *) " <text align=\"center\"/><title/> ", CFGF_NONE), /** Markup title string for tags with urgent windows. */ - CFG_STR((char *) "text_urgent", (char *) " <text align=\"center\"/><bg color=\"#ff4500\"/><title/> ", CFGF_NONE), + CFG_STR((char *) "text_urgent", (char *) " <text align=\"center\"/><title/> ", CFGF_NONE), CFG_AWESOME_END() }; /** This section defines iconbox widget options. */ @@ -331,11 +331,11 @@ cfg_opt_t widget_tasklist_opts[] = /** Mouse bindings. */ CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI), /** Markup title string for normal window. */ - CFG_STR((char *) "text_normal", (char *) "<bg color=\"#444444\"/><title/>", CFGF_NONE), + CFG_STR((char *) "text_normal", (char *) "<title/>", CFGF_NONE), /** Markup title string for focused windows. */ - CFG_STR((char *) "text_focus", (char *) "<bg color=\"#535d6c\"/><title/>", CFGF_NONE), + CFG_STR((char *) "text_focus", (char *) "<title/>", CFGF_NONE), /** Markup title string for urgent windows. */ - CFG_STR((char *) "text_urgent", (char *) "<bg color=\"#ff4500\"/><title/>", CFGF_NONE), + CFG_STR((char *) "text_urgent", (char *) "<title/>", CFGF_NONE), /** Which windows to show: tags, all or focus. */ CFG_STR((char *) "show", (char *) "tags", CFGF_NONE), /** Show icons of windows. */