diff options
author | Thanos Apollo <[email protected]> | 2023-12-10 12:24:28 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-10 12:24:28 +0200 |
commit | 1b6129ab5dc78cc4f15789dfdcb2f3f594d400c4 (patch) | |
tree | 1e0ccb699a8f7592d45a6e9e609c4efafa9a406d /.config/qtile/config.py | |
parent | 5343b157d658b8bec6c4c26008a86cdc6861166b (diff) |
qtile:(keys) Add shutdown keybinding
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r-- | .config/qtile/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index a73c0c8..9214be7 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -234,7 +234,8 @@ keys = [ # Thinkpad Key([],"F1", lazy.spawn("doas brightnessctl --device='intel_backlight' set 5%-")), Key([],"F2", lazy.spawn("doas brightnessctl --device='intel_backlight' set +5%")), - Key([],"F4", (lazy.spawn("doas /home/thanos/.scripts/keyboard-light-x220.sh"))) + Key([],"F4", (lazy.spawn("doas /home/thanos/.scripts/keyboard-light-x220.sh"))), + Key([mod, "control"], "q", lazy.shutdown()), ] mouse = [ |