diff --git a/qtile/.config/config.py b/qtile/.config/qtile/config.py similarity index 96% rename from qtile/.config/config.py rename to qtile/.config/qtile/config.py index 68101ca..a8bfb71 100644 --- a/qtile/.config/config.py +++ b/qtile/.config/qtile/config.py @@ -99,13 +99,20 @@ for i in groups: #region layouts layouts = [ layout.MonadTall( - border_focus = '#0000ff', - border_width = 1, + border_focus = '#00ff00', + border_width = 2, new_at_current = True, + name = 'monadtall', ), - layout.Floating(), - layout.Max(), - layout.MonadWide(), + layout.Max( + name = 'max', + ), + layout.MonadWide( + border_focus = '#00ff00', + border_width = 2, + new_at_current = True, + name = 'monadwide', + ), ] #endregion