Updated alsa (markdown)

This commit is contained in:
Luke Bonham 2013-09-12 09:37:19 -07:00 committed by copycat-killer
parent da846b94e7
commit e241095ee6
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 Variable | Meaning | Type | Values
--- | --- | --- | --- --- | --- | --- | ---
volume.level | Self explained | int | 0-100 volume_now.level | Self explained | int | 0-100
volume.status | Device status | string | "on", "off" volume_now.status | Device status | string | "on", "off"
### output table ### output table
@ -32,22 +32,22 @@ You can control the widget with key bindings like these:
awful.key({ altkey }, "Up", awful.key({ altkey }, "Up",
function () function ()
awful.util.spawn("amixer set Master 1%+") awful.util.spawn("amixer set Master 1%+")
volume.update() volumewidget.update()
end), end),
awful.key({ altkey }, "Down", awful.key({ altkey }, "Down",
function () function ()
awful.util.spawn("amixer set Master 1%-") awful.util.spawn("amixer set Master 1%-")
volume.update() volumewidget.update()
end), end),
awful.key({ altkey }, "m", awful.key({ altkey }, "m",
function () function ()
awful.util.spawn("amixer set Master playback toggle") awful.util.spawn("amixer set Master playback toggle")
volume.update() volumewidget.update()
end), end),
awful.key({ altkey, "Control" }, "m", awful.key({ altkey, "Control" }, "m",
function () function ()
awful.util.spawn("amixer set Master playback 100%", false ) awful.util.spawn("amixer set Master playback 100%", false )
volume.update() volumewidget.update()
end), end),
where `altkey = "Mod1"`. where `altkey = "Mod1"`.