From 6f976f043104edff8c52ea51bbe4abf341512abc Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Tue, 5 Jan 2021 15:09:37 +0100 Subject: [PATCH] Made floating mode default --- src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.h b/src/config.h index 5c742ea..b805ed0 100644 --- a/src/config.h +++ b/src/config.h @@ -59,8 +59,8 @@ static const int resizehints = 1; /* 1 means respect size hints in tiled resi static const Layout layouts[] = { /* symbol arrange function */ - { "[]=", tile }, /* first entry is default */ - { "><>", NULL }, /* no layout function means floating behavior */ + { "><>", NULL }, /* first entry is default */ + { "[]=", tile }, { "[M]", monocle }, };