diff options
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r-- | .config/qtile/config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 24cedcd..d61aa70 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -22,7 +22,7 @@ my_keys = MyKeys(mod="mod4", keys = my_keys.init_keys() dgroups_key_binder = simple_key_binder("mod4") - +mouse = my_keys.init_mouse() ## Groups and layouts groups = [] group_names = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "0",] @@ -249,6 +249,8 @@ def init_screens(): return [Screen(top=bar.Bar(widgets=init_widgets_screen1(), size=33, opacity=0.8)), Screen(top=bar.Bar(widgets=init_widgets_screen2(), size=26, opacity=0.8))] + + screens = init_screens() follow_mouse_focus = True |