From ec2b3903548d252c4e0dbb9c9afbfa4f2c7ae3ea Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Sun, 19 Mar 2023 21:32:32 +0100 Subject: [PATCH] Revert "Configure Three Column Layout" This reverts commit a44e4648 --- config.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.h b/config.h index 92d7539..bdaab68 100644 --- a/config.h +++ b/config.h @@ -75,14 +75,13 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const Layout layouts[] = { /* symbol arrange function */ { "[]=", tile }, /* first entry is default */ - { "=|=", tcl}, /* three columns layout */ { "|||", col }, /* column layout */ { "|M|", centeredmaster }, { "><>", NULL }, /* no layout function means floating behavior */ { "[M]", monocle }, { NULL, NULL}, }; -static const Layout* monocleLayout = &layouts[5]; +static const Layout* monocleLayout = &layouts[4]; /* key definitions */ #define MODKEY Mod4Mask