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 MPD status in a textbox.
5 mpdwidget = lain.widgets.mpd()
7 Now playing songs are notified like this:
9 +--------------------------------------------------------+
11 | |/^\_/^\| Now playing |
12 | |\ O O /| Cannibal Corpse (Hammer Smashed Face) - 1993 |
13 | | '.o.' | Hammer Smashed Face (Radio Disney Version) |
15 +--------------------------------------------------------+
19 Variable | Meaning | Type | Default
21 `timeout` | Refresh timeout seconds | int | 1
22 `password` | MPD password | string | ""
23 `host` | MPD server | string | "127.0.0.1"
24 `port` | MPD port | string | "6600"
25 `music_dir` | Music directory | string | "~/Music"
26 `settings` | User settings | function | empty function
28 `settings` can use `mpd_now` table, which contains the following string values:
30 - state (possible values: "play", "pause", "stop")
37 and can modify `notification_preset` table, which will be the preset for the naughty notifications. Check [here](http://awesome.naquadah.org/doc/api/modules/naughty.html#notify) for the list of variables it can contain. Default definition:
39 notification _preset = {
40 title = "Now playing",
42 text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
43 mpd_now.album, mpd_now.date, mpd_now.title)
48 Variable | Meaning | Type
50 `widget` | The textbox | `wibox.widget.textbox`
51 `notify` | The notification | function
53 You can control the widget with key bindings like these:
56 awful.key({ altkey, "Control" }, "Up",
58 awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle")
61 awful.key({ altkey, "Control" }, "Down",
63 awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop")
66 awful.key({ altkey, "Control" }, "Left",
68 awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev")
71 awful.key({ altkey, "Control" }, "Right",
73 awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next")
77 where `altkey = "Mod1"`.