From daef611d8f73a58c97e4bf39bf2b250eec81b029 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Mon, 28 Mar 2022 12:01:35 -0400 Subject: Flashfocus negates the need for borders --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index 220e00e..609d3d3 100644 --- a/config.def.h +++ b/config.def.h @@ -1,7 +1,7 @@ /* See LICENSE file for copyright and license details. */ /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 0; /* border pixel of windows */ static const unsigned int gappx = 5; /* gaps between windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ @@ -50,7 +50,7 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const int lpm[] = { /* Index of preferred layout], if LENGTH(lpm)<#monitors -> default layout */ - 0, 4 + 4, 0 }; static const Layout layouts[] = { -- cgit v1.2.3 From 1ac60c85fe6bfc07262de840ab4c5a4ec1bd18f4 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Wed, 30 Mar 2022 23:02:23 -0400 Subject: Fix monitor layout priority --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 609d3d3..be64671 100644 --- a/config.def.h +++ b/config.def.h @@ -50,7 +50,7 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win static const int lpm[] = { /* Index of preferred layout], if LENGTH(lpm)<#monitors -> default layout */ - 4, 0 + 0, 4 }; static const Layout layouts[] = { -- cgit v1.2.3