{description = "toggle display", group = "client"}
),
- -- Volume keys
+ -- Volume
awful.key({ }, "XF86AudioRaiseVolume", function () awful.spawn("amixer set Master 9%+", false) end, {description = "volume up", group = "client"}),
awful.key({ }, "XF86AudioLowerVolume", function () awful.spawn("amixer set Master 9%-", false) end, {description = "volume down", group = "client"}),
awful.key({ }, "XF86AudioMute", function () awful.spawn("amixer set Master toggle", false) end, {description = "mute", group = "client"}),
+ -- Brightness
+ awful.key({ }, "XF86MonBrightnessDown", function () awful.util.spawn("xbrightness -10%") end),
+ awful.key({ }, "XF86MonBrightnessUp", function () awful.util.spawn("xbrightness +10%") end),
+
-- Hibernate
awful.key({ }, "XF86Launch1", function () awful.spawn("xhibernate") end, {description = "", group = "client"}),