From e5bdde4c77199c8b28de73cd80d353e56919531b Mon Sep 17 00:00:00 2001 From: Lukasz M Date: Wed, 24 Jun 2020 00:06:47 +0200 Subject: [PATCH 1/2] removed default firefox rule (useless IMO) --- config.def.h | 1 - 1 file changed, 1 deletion(-) diff --git a/config.def.h b/config.def.h index 1c0b587..c09e9a3 100644 --- a/config.def.h +++ b/config.def.h @@ -28,7 +28,6 @@ static const Rule rules[] = { */ /* class instance title tags mask isfloating monitor */ { "Gimp", NULL, NULL, 0, 1, -1 }, - { "Firefox", NULL, NULL, 1 << 8, 0, -1 }, }; /* layout(s) */ From 19ab95da81cfcaecd924a8a5bbf1e551bb878ae9 Mon Sep 17 00:00:00 2001 From: Lukasz M Date: Wed, 24 Jun 2020 00:07:33 +0200 Subject: [PATCH 2/2] change default MODKEY to Mod4Mask i.e. super --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index c09e9a3..8347e07 100644 --- a/config.def.h +++ b/config.def.h @@ -43,7 +43,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} }, \