X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/09d7ce58c1f1a335490d5aadf1a105fd12394a5e..2210465e215e263ecd4950dba6608461f82f0259:/alsabar.md diff --git a/alsabar.md b/alsabar.md index ad5b1bf..e50b5c7 100644 --- a/alsabar.md +++ b/alsabar.md @@ -47,7 +47,7 @@ It's **crucial** to set `notifications.bar_size` to your `mywibox[s]` height, Variable | Meaning | Type --- | --- | --- -`widget` | The widget | `awful.widget.progressbar` +`bar` | The widget | `awful.widget.progressbar` `channel` | Alsa channel | string `step` | Increase/decrease step | string `notify` | The notification | function @@ -58,22 +58,22 @@ You can control the widget with key bindings like these: awful.key({ altkey }, "Up", function () awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "+") - volume.notify() + myvolumebar.notify() end), awful.key({ altkey }, "Down", function () awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "-") - volume.notify() + myvolumeba.notify() end), awful.key({ altkey }, "m", function () - awful.util.spawn("amixer set Master playback toggle") - volume.notify() + awful.util.spawn("amixer set " .. volume.channel .. " playback toggle") + myvolumebar.notify() end), awful.key({ altkey, "Control" }, "m", function () - awful.util.spawn("amixer set Master playback 100%", false ) - volume.notify() + awful.util.spawn("amixer set " .. volume.channel .. " playback 100%", false ) + myvolumebar.notify() end), where `altkey = "Mod1"`. \ No newline at end of file