From 82156146b3f3ab720ac752a953b952d638e1f935 Mon Sep 17 00:00:00 2001 From: Madeleine Date: Tue, 18 Oct 2022 06:55:17 +0100 Subject: [PATCH] bottom bar + theme rename --- config.h | 4 ++-- themes/{onedark.h => default.h} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename themes/{onedark.h => default.h} (100%) diff --git a/config.h b/config.h index 03ee2c2..a372ffa 100644 --- a/config.h +++ b/config.h @@ -2,7 +2,7 @@ /* Default settings; can be overriden by command line. */ /* -b option; if 0, dmenu appears at bottom */ -static int topbar = 1; +static int topbar = 0; /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { @@ -13,7 +13,7 @@ static const char *fonts[] = { static const char *prompt = NULL; /* theme */ -#include "themes/onedark.h" +#include "themes/default.h" /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ static unsigned int lines = 0; diff --git a/themes/onedark.h b/themes/default.h similarity index 100% rename from themes/onedark.h rename to themes/default.h