From b4895a30aa34be015c744d564061327aed4c1fc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eahin=20Akkaya?= Date: Fri, 18 Mar 2022 17:50:07 +0300 Subject: [PATCH] Switch from xbacklight to light --- .config/qtile/modules/keys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/qtile/modules/keys.py b/.config/qtile/modules/keys.py index 914600b..2554583 100644 --- a/.config/qtile/modules/keys.py +++ b/.config/qtile/modules/keys.py @@ -122,9 +122,9 @@ keys = [ # == backlight Key([], "XF86MonBrightnessUp", - lazy.spawn("xbacklight -inc 5")), + lazy.spawn("light -A 5")), Key([], "XF86MonBrightnessDown", - lazy.spawn("xbacklight -dec 5")), + lazy.spawn("light -U 5")), Key([], "Print", lazy.spawn("flameshot gui")),