All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 [<- widgets](https://github.com/copycat-killer/lain/wiki/Widgets)
3 Shows and controls alsa volume with a progressbar and provides tooltips, notifications, and color changes at mute/unmute switch.
5 myvolumebar = lain.widgets.alsabar()
7 * Left click: Launch `alsamixer` in your `terminal`.
8 * Right click: Mute/unmute.
9 * Scroll wheel: Increase/decrase volume.
11 The function takes a table as optional argument, which can contain:
13 Variable | Meaning | Type | Default
15 `width` | Bar width | int | 63
16 `height` | Bar height | int | 1
17 `ticks` | Set bar ticks on | boolean | true
18 `ticks_size` | Ticks size | int | 7
19 `vertical` | Set the bar vertical | boolean | false
20 `channel` | Mixer channel | string | "Master"
21 `step` | Step at which volume is increased/decreased | string | "5%"
22 `colors` | Bar colors | table | see **colors**
23 `notifications` | Notifications settings | table | see **notifications**
27 Variable | Meaning | Type | Default
29 `background` | Bar backgrund color | string | `beautiful.bg_normal`
30 `mute` | Bar mute color | string | "#EB8F8F"
31 `unmute` | Bar unmute color | string | "#A4CE8A"
35 Variable | Meaning | Type | Default
37 `font` | Notifications font | string | The one defined in `beautiful.font`
38 `font_size` | Notifications font size | string | "11"
39 `color` | Notifications color | string | `beautiful.fg_focus`
40 `bar_size` | Wibox height | int | 18
42 It's **crucial** to set `notifications.bar_size` to your `mywibox[s]` height,
43 **if** you have set it different than default (18).
47 Variable | Meaning | Type
49 `widget` | The widget | `awful.widget.progressbar`
50 `channel` | Alsa channel | string
51 `step` | Increase/decrease step | string
52 `notify` | The notification | function
54 You can control the widget with key bindings like these:
57 awful.key({ altkey }, "Up",
59 awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "+")
62 awful.key({ altkey }, "Down",
64 awful.util.spawn("amixer set " .. volume.channel .. " " .. volume.step .. "-")
67 awful.key({ altkey }, "m",
69 awful.util.spawn("amixer set Master playback toggle")
72 awful.key({ altkey, "Control" }, "m",
74 awful.util.spawn("amixer set Master playback 100%", false )
78 where `altkey = "Mod1"`.