diff options
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r-- | .config/qtile/config.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py new file mode 100644 index 0000000..f2b2549 --- /dev/null +++ b/.config/qtile/config.py @@ -0,0 +1,25 @@ +import defaults +import keybindings +import screens + +groups = defaults.groups +keys = keybindings.keybindings(defaults.mod, defaults._mod, groups) +mouse = keybindings.mousebindings(defaults.mod, defaults._mod) +layouts = defaults.layouts +floating_layout = defaults.floating_layout +widget_defaults = defaults.widget_defaults +extension_defaults = defaults.extension_defaults +screens = screens.screens +floating_layout = defaults.floating_layout + +dgroups_key_binder = None +dgroups_app_rules = [] +follow_mouse_focus = True +bring_front_click = False +floats_kept_above = True +cursor_warp = False +auto_fullscreen = True +focus_on_window_activation = "smart" +reconfigure_screens = True +auto_minimize = True +wmname = "LG3D" |