My Qtile window manager configuration
git clone https://github.com/m-col/qtile-config
Files | Refs | Readme

Commit 2b44747f8994a31ce86f81af29d4db8639a7a96c
Parent: 1907ed323ebcb03f43d4925633e0b69560487042
Author: mcol <mcol@posteo.net>
Date: 2022-01-15 23:07:36 +0000
Committer: mcol <mcol@posteo.net>
Committed: 2022-01-15 23:07:36 +0000

Updates

- use snap window dragging
- set background and wallpaper of second output
- remove ununsed keybinding

config.py Modified

@@ -228,7 +228,8 @@
     Drag(
         [mod],
         "Button1",
-        lazy.window.set_position_floating(),
+        #lazy.window.set_position_floating(),
+        move_snap_window(snap_dist=20),
         start=lazy.window.get_position(),
     ),
     Drag(
@@ -589,9 +590,9 @@
                 time,  # Right
             ],
             28,
-            background=background,
+            background=background + "00",
         ),
-        wallpaper="~/pictures/Wallpapers/qtile-wallpaper.png",
+        wallpaper="~/pictures/Wallpapers/q_triangles2.png",
         wallpaper_mode="fill",
         top=bar.Gap(outer_gaps),
         left=bar.Gap(outer_gaps),
@@ -631,8 +632,3 @@
 focus_on_window_activation = "smart"
 keys = [Key(mods, key, cmd, desc=desc) for mods, key, cmd, desc in my_keys]
 groups.append(scratchpad)
-
-
-# keys.extend([
-#    Key([], "b", lazy.spawn("rofi -show"), swallow=False),
-# ])