diff options
author | David Runge <dave@sleepmap.de> | 2017-12-12 01:55:43 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2017-12-12 01:55:43 +0100 |
commit | dfe5bdb94945c78415e072c05cee07fa6c97b434 (patch) | |
tree | 945a2b7713e776f7559abe9f4a6cff8cebafa5b1 | |
parent | e7bab20c36e003ead5f83a3a437eec553c5f1d96 (diff) | |
download | dotfiles-dfe5bdb94945c78415e072c05cee07fa6c97b434.tar.gz dotfiles-dfe5bdb94945c78415e072c05cee07fa6c97b434.tar.bz2 dotfiles-dfe5bdb94945c78415e072c05cee07fa6c97b434.tar.xz dotfiles-dfe5bdb94945c78415e072c05cee07fa6c97b434.zip |
.config/qtile/config.py: Bringing back key bindings for xbacklight to set brightness of screen, as its broken thanks to firmware on X2{2,3}0.
-rw-r--r-- | .config/qtile/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d9579c7..8a800b7 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -82,6 +82,9 @@ keys = [ Key([], "XF86AudioNext", lazy.spawn(audio_next)), Key([], "XF86AudioPlay", lazy.spawn(audio_toggle)), Key([], "XF86AudioStop", lazy.spawn(audio_stop)), + # brightness settings + Key([], "XF86MonBrightnessUp", lazy.spawn(brightness_up)), + Key([], "XF86MonBrightnessDown", lazy.spawn(brightness_down)), # cycle to previous and next group Key(["control", alt], "Left", lazy.screen.prev_group(skip_managed=True)), |