From 8460cec82ae771201999f3150071eea866c45e36 Mon Sep 17 00:00:00 2001 From: ThanosApollo Date: Sun, 25 Sep 2022 08:27:37 +0300 Subject: Remove old window functions --- .config/qtile/config.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index edb8485..69b537a 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -14,19 +14,6 @@ def start_once(): autostart_path = os.path.expanduser('~/.config/autostart/autostart.sh') subprocess.run([autostart_path]) - -@lazy.function -def window_to_prev_group(qtile): - if qtile.currentWindow is not None: - i = qtile.groups.index(qtile.currentGroup) - qtile.currentWindow.togroup(qtile.groups[i - 1].name) - -@lazy.function -def window_to_next_group(qtile): - if qtile.currentWindow is not None: - i = qtile.groups.index(qtile.currentGroup) - qtile.currentWindow.togroup(qtile.groups[i + 1].name) - ## Keybindings my_keys = MyKeys(mod="mod4", browser="qutebrowser", -- cgit v1.2.3