Updated alsa (markdown)

This commit is contained in:
Luke Bonham 2013-09-12 09:37:19 -07:00
parent f439acc2f3
commit 8f1b80f284
1 changed files with 6 additions and 6 deletions

12
alsa.md
View File

@ -16,8 +16,8 @@ Variable | Meaning | Type | Default
Variable | Meaning | Type | Values
--- | --- | --- | ---
volume.level | Self explained | int | 0-100
volume.status | Device status | string | "on", "off"
volume_now.level | Self explained | int | 0-100
volume_now.status | Device status | string | "on", "off"
### output table
@ -32,22 +32,22 @@ You can control the widget with key bindings like these:
awful.key({ altkey }, "Up",
function ()
awful.util.spawn("amixer set Master 1%+")
volume.update()
volumewidget.update()
end),
awful.key({ altkey }, "Down",
function ()
awful.util.spawn("amixer set Master 1%-")
volume.update()
volumewidget.update()
end),
awful.key({ altkey }, "m",
function ()
awful.util.spawn("amixer set Master playback toggle")
volume.update()
volumewidget.update()
end),
awful.key({ altkey, "Control" }, "m",
function ()
awful.util.spawn("amixer set Master playback 100%", false )
volume.update()
volumewidget.update()
end),
where `altkey = "Mod1"`.