Super + Up increases volume, Super + Down decreases it

This commit is contained in:
Thomas Forgione 2019-12-09 14:33:09 +01:00
parent 83d83edc0b
commit ecd3439efb
No known key found for this signature in database
GPG Key ID: 203DAEA747F48F41
1 changed files with 12 additions and 4 deletions

16
rc.lua
View File

@ -413,12 +413,20 @@ globalkeys = awful.util.table.join(
-- Custom shortcuts
awful.key({ }, "XF86AudioRaiseVolume", function()
awful.util.spawn("amixer set Master 3%+", false)
end, {description = "increase the volume by 3%", group="Fn Keys"}),
awful.util.spawn("amixer set Master 3%+", false)
end, {description = "increase the volume by 3%", group="Fn Keys"}),
awful.key({ }, "XF86AudioLowerVolume", function()
awful.util.spawn("amixer set Master 3%-", false)
end, {description = "decrease the volume by 3%", group="Fn Keys"}),
awful.util.spawn("amixer set Master 3%-", false)
end, {description = "decrease the volume by 3%", group="Fn Keys"}),
awful.key({modkey}, "Up", function()
awful.util.spawn("amixer sset Master 3%+", false)
end, {description = "increase the volume by 3%", group="Sound controls"}),
awful.key({modkey}, "Down", function()
awful.util.spawn("amixer sset Master 3%-", false)
end, {description = "decrease the volume by 3%", group="Sound controls"}),
awful.key({ }, "XF86AudioMute", function()
awful.util.spawn("amixer set Master toggle", false)