From: martin f. krafft Date: Tue, 12 Dec 2023 15:53:22 +0000 (+0100) Subject: switch from xbacklight to light X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/f93fdc38098209085339936a9a141478c50eff44 switch from xbacklight to light --- diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index e10388f..9440e85 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -932,8 +932,8 @@ awful.key(nil, "XF86AudioMicMute", function () awful.spawn("pactl set-source-mut awful.key({ cmdkey }, "Home", function () awful.spawn("pactl set-source-mute @DEFAULT_SOURCE@ toggle") end), awful.key({ cmdkey }, "Insert", function () awful.spawn("pa_cycle_default source") end), awful.key({ cmdkey }, "Delete", function () awful.spawn("pa_cycle_default sink") end), -awful.key(nil, "XF86MonBrightnessDown", function () awful.spawn("xbacklight -dec 5%") end), -awful.key(nil, "XF86MonBrightnessUp", function () awful.spawn("xbacklight -inc 5%") end), +awful.key(nil, "XF86MonBrightnessDown", function () awful.spawn("light -U 10") end), +awful.key(nil, "XF86MonBrightnessUp", function () awful.spawn("light -A 10") end), awful.key(nil, "XF86Display", function () awful.spawn("autorandr --change --force"); initialise_to_autorandr_profile() end), awful.key(nil, "XF86WLAN", function () awful.spawn("") end), awful.key(nil, "XF86Tools", function () awful.spawn("") end),