diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 13 |
1 files changed, 0 insertions, 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]) - -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) - -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", |