aboutsummaryrefslogtreecommitdiffstats
path: root/.config/qtile
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-12-12 01:55:43 +0100
committerDavid Runge <dave@sleepmap.de>2017-12-12 01:55:43 +0100
commitdfe5bdb94945c78415e072c05cee07fa6c97b434 (patch)
tree945a2b7713e776f7559abe9f4a6cff8cebafa5b1 /.config/qtile
parente7bab20c36e003ead5f83a3a437eec553c5f1d96 (diff)
downloaddotfiles-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.
Diffstat (limited to '.config/qtile')
-rw-r--r--.config/qtile/config.py3
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)),