From 6b404b23e04ae17e13637bdc1c219d6188ccf516 Mon Sep 17 00:00:00 2001 From: David Runge Date: Sun, 8 May 2016 21:01:12 +0200 Subject: .config/qtile/config.py: Externalizing the brightness steps for xbacklight into separate variable. --- .config/qtile/config.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.config/qtile') diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 886eae7..24b44cb 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -13,8 +13,9 @@ terminal = "termite" drun_launcher = "rofi -show drun" run_launcher = "rofi -show run" lock = home+"/bin/i3lock" -brightness_up = "xbacklight -inc 10" -brightness_down = "xbacklight -dec 10" +brightness_step = "5" +brightness_up = "xbacklight -inc "+brightness_step +brightness_down = "xbacklight -dec "+brightness_step volume_up = home+"/bin/set_volume increase" volume_down = home+"/bin/set_volume decrease" -- cgit v1.2.3-54-g00ecf