]> git.madduck.net Git - etc/awesome.git/blob - alsabar.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

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.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Updated mpd (markdown)
[etc/awesome.git] / alsabar.md
1 [<- widgets](https://github.com/copycat-killer/lain/wiki/Widgets)
2
3 Shows and controls alsa volume with a progressbar; provides tooltips, notifications, and color changes at mute/unmute switch.
4
5         volume = lain.widgets.alsabar()
6
7 * Left click: Launch `alsamixer` in your `terminal`.
8 * Right click: Mute/unmute.
9 * Scroll wheel: Increase/decrase volume.
10
11 The function takes a table as optional argument, which can contain:
12
13 Variable | Meaning | Type | Default
14 --- | --- | --- | ---
15 `timeout` | Refresh timeout seconds | int | 4
16 `width` | Bar width | int | 63
17 `height` | Bar height | int | 1
18 `ticks` | Set bar ticks on | boolean | true
19 `ticks_size` | Ticks size | int | 7
20 `vertical` | Set the bar vertical | boolean | false
21 `channel` | Mixer channel | string | "Master" 
22 `step` | Step at which volume is increased/decreased | string | "5%"
23 `colors` | Bar colors | table | see **colors**
24 `notifications` | Notifications settings | table | see **notifications**
25
26 ### colors
27
28 Variable | Meaning | Type | Default
29 --- | --- | --- | ---
30 `background` | Bar backgrund color | string | `beautiful.bg_normal`
31 `mute` | Bar mute color | string | "#EB8F8F"
32 `unmute` | Bar unmute color | string | "#A4CE8A"
33
34 ### notifications
35
36 Variable | Meaning | Type | Default
37 --- | --- | --- | ---
38 `font` | Notifications font | string | The one defined in `beautiful.font`
39 `font_size` | Notifications font size | string | "11"
40 `color` | Notifications color | string | `beautiful.fg_focus`
41 `bar_size` | Wibox height | int | 18
42
43 It's **crucial** to set `notifications.bar_size` to your `mywibox[s]` height.
44
45 ### output table
46
47 Variable | Meaning | Type
48 --- | --- | ---
49 `bar` | The widget | `awful.widget.progressbar`
50 `channel` | Alsa channel | string
51 `step` | Increase/decrease step | string
52 `notify` | The notification | function
53
54 You can control the widget with key bindings like these:
55
56     -- ALSA volume control
57     awful.key({ altkey }, "Up",
58         function ()
59             awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "+")
60             volume.notify()
61         end),
62     awful.key({ altkey }, "Down",
63         function ()
64             awful.util.spawn("amixer -q set " .. volume.channel .. " " .. volume.step .. "-")
65             volume.notify()
66         end),
67     awful.key({ altkey }, "m",
68         function ()
69             awful.util.spawn("amixer -q set " .. volume.channel .. " playback toggle")
70             volume.notify()
71         end),
72     awful.key({ altkey, "Control" }, "m",
73         function ()
74             awful.util.spawn("amixer -q set " .. volume.channel .. " playback 100%")
75             volume.notify()
76         end),
77
78 where `altkey = "Mod1"`.