diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-08-14 01:09:10 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-08-14 01:09:10 +0530 |
commit | 4142a4958465c98f88d5a1a2b473a066704ce752 (patch) | |
tree | 3ebfb5e70d733c04ddb75b24ea9abe45b6210933 /.config/qtile/defaults.py | |
parent | 4e8de7cd6583e23441d1c552f3c9af88fe34bf3b (diff) |
Diffstat (limited to '.config/qtile/defaults.py')
-rw-r--r-- | .config/qtile/defaults.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.config/qtile/defaults.py b/.config/qtile/defaults.py index a69ccaf..7d13cc6 100644 --- a/.config/qtile/defaults.py +++ b/.config/qtile/defaults.py @@ -46,6 +46,16 @@ center_floating_windows_by_class = [ default_border_width=3 +floating_layout = layout.Floating( + border_width=default_border_width, + border_normal=colors[0][4], + border_focus=colors[0][5], + float_rules = [ + *layout.Floating.default_float_rules, + *[Match(wm_class=x) for x in center_floating_windows_by_class], + ], +) + layouts = [ layout.Columns( insert_position=1, @@ -65,16 +75,6 @@ layouts = [ floating_layout, ] -floating_layout = layout.Floating( - border_width=default_border_width, - border_normal=colors[0][4], - border_focus=colors[0][5], - float_rules = [ - *layout.Floating.default_float_rules, - *[Match(wm_class=x) for x in center_floating_windows_by_class], - ], -) - widget_defaults = dict( font = "NotoSans NF:style=Regular", fontsize = 14, |