diff --git a/config.c b/config.c index 36ddf6d..da0b565 100644 --- a/config.c +++ b/config.c @@ -80,7 +80,7 @@ configure() settings.title_blur = strdup(TITLE_BLUR); settings.title_focus = strdup(TITLE_FOCUS); settings.title_ellipsis = TITLE_ELLIPSIS; - settings.menu = TITLE ? strdup(TITLE): "sans"; + settings.menu = strdup(MENU); settings.layout_count = sizeof(layouts) / sizeof(Layout); settings.layouts = calloc(settings.layout_count, sizeof(Layout)); diff --git a/config.h b/config.h index e5af70d..ba206ab 100644 --- a/config.h +++ b/config.h @@ -16,6 +16,9 @@ #define TITLE_FOCUS "White" #define TITLE_ELLIPSIS 32 +// Window lists +# define MENU "sans:size=8" + // There are three static tiles called SPOT1, SPOT2, and SPOT3. // Want more tiles? Different layouts? Floating? Go away ;) // -------------------------------