/* finally, the user can have requested no decorations, which overrides
everything (but doesnt give it a border if it doesnt have one) */
- if (self->undecorated)
- self->decorations = 0; //&= OB_FRAME_DECOR_BORDER;
+ if (self->undecorated) {
+ if (config_theme_keepborder)
+ self->decorations &= OB_FRAME_DECOR_BORDER;
+ else
+ self->decorations = 0;
+ }
/* if we don't have a titlebar, then we cannot shade! */
if (!(self->decorations & OB_FRAME_DECOR_TITLEBAR))
ObPlacePolicy config_place_policy;
-gchar *config_theme;
+gchar *config_theme;
+gboolean config_theme_keepborder;
gchar *config_title_layout;
g_free(config_title_layout);
config_title_layout = parse_string(doc, n);
}
+ if ((n = parse_find_node("keepBorder", node)))
+ config_theme_keepborder = parse_bool(doc, n);
}
static void parse_desktops(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
config_theme = NULL;
config_title_layout = g_strdup("NLIMC");
+ config_theme_keepborder = TRUE;
parse_register(i, "theme", parse_theme, NULL);