summaryrefslogtreecommitdiff
path: root/.config/qtile/config.py
diff options
context:
space:
mode:
authorThanosApollo <[email protected]>2022-10-03 15:26:26 +0300
committerThanosApollo <[email protected]>2022-10-03 15:26:26 +0300
commit780e1518d1fd0fa6cb13a79109d9e9401a015866 (patch)
tree438ec406d28b970b79645baa64e4ca0357ee6e02 /.config/qtile/config.py
parent3f1291e51a6363acad76a681184a682dade74025 (diff)
Add mouse keys
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r--.config/qtile/config.py4
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