diff options
author | Thanos Apollo <[email protected]> | 2022-09-25 09:24:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2022-09-25 09:24:48 +0300 |
commit | 8396265dbcb120f369a146602045c7af8e514179 (patch) | |
tree | 75486098a2bd8a1b08a5c810af1b828e3d1a6c00 | |
parent | 61f3f38d9bc92010b57e0f617294e4be28498ac1 (diff) | |
parent | 8f89737d7d83c67a75da841f45d37a1a743e680e (diff) |
Merge branch 'master' of github.com:ThanosApollo/config
-rw-r--r-- | .config/qtile/config.py | 13 | ||||
-rw-r--r-- | .zshrc | 2 |
2 files changed, 1 insertions, 14 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 3fd1da0..49dbf6c 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", @@ -38,7 +38,7 @@ alias cs='config status' alias cc='config commit -m' #pacman | yay -alias yeet='yay -Rsc' +alias yeet='paru -Rsc' # weather alias weather="curl wttr.in" |