From 0b25b5e4da34872316ef0e06da455264d4b801ec Mon Sep 17 00:00:00 2001 From: Thomas Thurman Date: Wed, 28 Oct 2009 00:00:53 -0400 Subject: 'wm' and 'cowbell1' attributes --- src/ui/theme.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/ui/theme.c b/src/ui/theme.c index 8d4bbeed..4ee04c3a 100644 --- a/src/ui/theme.c +++ b/src/ui/theme.c @@ -288,10 +288,21 @@ cowbell_get_attribute (ccss_node_t const *self, } } } + } - /* giving up here */ - return NULL; + /* try some odd rare ones */ + + if (strcmp(name, "cowbell1")==0) + { + return g_strdup ("1"); } + else if (strcmp(name, "wm")==0) + { + return g_strdup ("metacity"); + } + + /* giving up here */ + return NULL; } static ccss_node_class_t cowbell_node_class = { -- cgit v1.2.1