From ad9a48f3612b2bf397234af9b4c45f8f5def6d17 Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Sun, 17 Dec 2023 09:47:29 +0100 Subject: Fix modifier key, font size --- configs/framework.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/framework.h b/configs/framework.h index e6cf928..2a7af14 100644 --- a/configs/framework.h +++ b/configs/framework.h @@ -14,11 +14,11 @@ /* appearance */ static const unsigned int borderpx = 1; /* border pixel of windows */ -static const unsigned int snap = 8; /* snap pixel */ +static const unsigned int snap = 8; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 0; /* 0 means bottom bar */ -static const char *fonts[] = { "DVIcons:size=10" }; -static const char dmenufont[] = "DVIcons:size=10"; +static const char *fonts[] = { "DVIcons:size=8" }; +static const char dmenufont[] = "DVIcons:size=8"; /* Tango color scheme * https://en.wikipedia.org/wiki/Tango_Desktop_Project @@ -98,7 +98,7 @@ static const Layout layouts[] = { }; /* key definitions */ -#define MODKEY Mod1Mask +#define MODKEY Mod4Mask #define TAGKEYS(KEY,TAG) \ { MODKEY, KEY, view, {.ui = 1 << TAG} }, \ { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ -- cgit v1.2.3