Updated alsabar (markdown)

This commit is contained in:
Luke Bonham 2013-09-13 14:00:43 -07:00
parent fb09ee4af8
commit 72bc5d131a
1 changed files with 19 additions and 19 deletions

View File

@ -2,7 +2,7 @@
Shows and controls alsa volume with a progressbar; provides tooltips, notifications, and color changes at mute/unmute switch.
myvolumebar = lain.widgets.alsabar()
volume = lain.widgets.alsabar()
* Left click: Launch `alsamixer` in your `terminal`.
* Right click: Mute/unmute.
@ -53,26 +53,26 @@ Variable | Meaning | Type
You can control the widget with key bindings like these:
-- Volume control
-- ALSA volume control
awful.key({ altkey }, "Up",
function ()
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "+")
myvolumebar.notify()
awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "+")
volume.notify()
end),
awful.key({ altkey }, "Down",
function ()
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "-")
myvolumeba.notify()
awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "-")
volume.notify()
end),
awful.key({ altkey }, "m",
function ()
awful.util.spawn("amixer set " .. volume.channel .. " playback toggle")
myvolumebar.notify()
awful.util.spawn("amixer -q set " .. volume.channel .. " playback toggle")
volume.notify()
end),
awful.key({ altkey, "Control" }, "m",
function ()
awful.util.spawn("amixer set " .. volume.channel .. " playback 100%", false )
myvolumebar.notify()
awful.util.spawn("amixer -q set " .. volume.channel .. " playback 100%")
volume.notify()
end),
where `altkey = "Mod1"`.