From f3b451352944ecf25b625c6f0a3832b67e8ed8cc Mon Sep 17 00:00:00 2001 From: Wittano Bonarotti Date: Sun, 20 Oct 2024 19:24:20 +0200 Subject: [PATCH] feat(xmoand): updated layouts in xmoand I changed default layout from Tall to Max and removed magnizised from tall layouts. It was unecessary and was annoying me from a while --- dotfiles/xmonad/src/Layout.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotfiles/xmonad/src/Layout.hs b/dotfiles/xmonad/src/Layout.hs index fa839eb9..7376eb43 100644 --- a/dotfiles/xmonad/src/Layout.hs +++ b/dotfiles/xmonad/src/Layout.hs @@ -11,7 +11,7 @@ import XMonad.Layout.Spacing (spacing) import XMonad.Layout.ToggleLayouts (toggleLayouts) import XMonad.Layout.WindowArranger (windowArrange) -layout = tall ||| Mirror tall ||| maxLayout +layout = maxLayout ||| tall ||| Mirror tall where tall = toggleLayouts floats $ @@ -19,8 +19,8 @@ layout = tall ||| Mirror tall ||| maxLayout avoidStruts $ limitWindows 4 $ spacing 20 $ - magnifiercz 1.5 $ - Tall nmaster delta ratio + -- magnifiercz 1.5 $ + Tall nmaster delta ratio maxLayout = noBorders Full floats = renamed [Replace "floats"] $ smartBorders simplestFloat nmaster = 1