Updated alsabar (markdown)

This commit is contained in:
Luke Bonham 2013-09-11 09:41:14 -07:00
parent a5fea2962e
commit 274515ca18
1 changed files with 2 additions and 2 deletions

View File

@ -56,12 +56,12 @@ You can control the widget with key bindings like these:
-- Volume control
awful.key({ altkey }, "Up",
function ()
awful.util.spawn("amixer sset " .. volume.channel .. " " .. volume.step .. "+")
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "+")
volume.notify()
end),
awful.key({ altkey }, "Down",
function ()
awful.util.spawn("amixer sset " .. volume.channel .. " " .. volume.step .. "-")
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "-")
volume.notify()
end),
awful.key({ altkey }, "m",