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. 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`. * Left click: Launch `alsamixer` in your `terminal`.
* Right click: Mute/unmute. * Right click: Mute/unmute.
@ -53,26 +53,26 @@ Variable | Meaning | Type
You can control the widget with key bindings like these: You can control the widget with key bindings like these:
-- Volume control -- ALSA volume control
awful.key({ altkey }, "Up", awful.key({ altkey }, "Up",
function () function ()
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "+") awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "+")
myvolumebar.notify() volume.notify()
end), end),
awful.key({ altkey }, "Down", awful.key({ altkey }, "Down",
function () function ()
awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "-") awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "-")
myvolumeba.notify() volume.notify()
end), end),
awful.key({ altkey }, "m", awful.key({ altkey }, "m",
function () function ()
awful.util.spawn("amixer set " .. volume.channel .. " playback toggle") awful.util.spawn("amixer -q set " .. volume.channel .. " playback toggle")
myvolumebar.notify() volume.notify()
end), end),
awful.key({ altkey, "Control" }, "m", awful.key({ altkey, "Control" }, "m",
function () function ()
awful.util.spawn("amixer set " .. volume.channel .. " playback 100%", false ) awful.util.spawn("amixer -q set " .. volume.channel .. " playback 100%")
myvolumebar.notify() volume.notify()
end), end),
where `altkey = "Mod1"`. where `altkey = "Mod1"`.