mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-13 03:34:22 +02:00
lib: add notifications for brightness change
This commit is contained in:
parent
c478921aea
commit
19f735065b
2 changed files with 35 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
config.keys = {}
|
||||
config.mouse = {}
|
||||
local volume = loadrc("volume", "vbe/volume")
|
||||
local brightness = loadrc("brightness", "vbe/brightness")
|
||||
|
||||
local function client_info()
|
||||
local v = ""
|
||||
|
@ -80,6 +81,8 @@ config.keys.global = awful.util.table.join(
|
|||
awful.key({ modkey, "Control" }, "r", awesome.restart),
|
||||
|
||||
-- Multimedia keys
|
||||
awful.key({ }, "XF86MonBrightnessUp", brightness.increase),
|
||||
awful.key({ }, "XF86MonBrightnessDown", brightness.decrease),
|
||||
awful.key({ }, "XF86AudioRaiseVolume", volume.increase),
|
||||
awful.key({ }, "XF86AudioLowerVolume", volume.decrease),
|
||||
awful.key({ }, "XF86AudioMute", volume.toggle)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue