aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-12-18 15:06:26 +0100
committerDavid Runge <dave@sleepmap.de>2017-12-18 15:06:26 +0100
commit67aaf82e118f5c855b976167c97a23fb19b30279 (patch)
treeb7517f72079e7a15767b482d2c56407c6b9bb2a5
parent3900272c78d08bdeb7a156d5e39e6a4a1bb42d94 (diff)
parentdfe5bdb94945c78415e072c05cee07fa6c97b434 (diff)
downloaddotfiles-67aaf82e118f5c855b976167c97a23fb19b30279.tar.gz
dotfiles-67aaf82e118f5c855b976167c97a23fb19b30279.tar.bz2
dotfiles-67aaf82e118f5c855b976167c97a23fb19b30279.tar.xz
dotfiles-67aaf82e118f5c855b976167c97a23fb19b30279.zip
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles: .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.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)),