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.
3 Licensed under GNU General Public License v2
5 * (c) 2010, Adrian C. <anrxc@sysphere.org>
9 local helpers = require("lain.helpers")
10 local shell = require("awful.util").shell
11 local escape_f = require("awful.util").escape
12 local focused = require("awful.screen").focused
13 local naughty = require("naughty")
14 local wibox = require("wibox")
15 local os = { getenv = os.getenv }
16 local string = { format = string.format,
17 gmatch = string.gmatch,
18 match = string.match }
23 local function factory(args)
24 local mpd = { widget = wibox.widget.textbox() }
25 local args = args or {}
26 local timeout = args.timeout or 2
27 local password = (args.password and #args.password > 0 and string.format("password %s\\n", args.password)) or ""
28 local host = args.host or os.getenv("MPD_HOST") or "127.0.0.1"
29 local port = args.port or os.getenv("MPD_PORT") or "6600"
30 local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
31 local cover_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$"
32 local cover_size = args.cover_size or 100
33 local default_art = args.default_art
34 local notify = args.notify or "on"
35 local followtag = args.followtag or false
36 local settings = args.settings or function() end
38 local mpdh = string.format("telnet://%s:%s", host, port)
39 local echo = string.format("printf \"%sstatus\\ncurrentsong\\nclose\\n\"", password)
40 local cmd = string.format("%s | curl --connect-timeout 1 -fsm 3 %s", echo, mpdh)
42 mpd_notification_preset = { title = "Now playing", timeout = 6 }
44 helpers.set_map("current mpd track", nil)
47 helpers.async({ shell, "-c", cmd }, function(f)
68 for line in string.gmatch(f, "[^\n]+") do
69 for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
70 if k == "state" then mpd_now.state = v
71 elseif k == "file" then mpd_now.file = v
72 elseif k == "Name" then mpd_now.name = escape_f(v)
73 elseif k == "Artist" then mpd_now.artist = escape_f(v)
74 elseif k == "Title" then mpd_now.title = escape_f(v)
75 elseif k == "Album" then mpd_now.album = escape_f(v)
76 elseif k == "Genre" then mpd_now.genre = escape_f(v)
77 elseif k == "Track" then mpd_now.track = escape_f(v)
78 elseif k == "Date" then mpd_now.date = escape_f(v)
79 elseif k == "Time" then mpd_now.time = v
80 elseif k == "elapsed" then mpd_now.elapsed = string.match(v, "%d+")
81 elseif k == "song" then mpd_now.pls_pos = v
82 elseif k == "playlistlength" then mpd_now.pls_len = v
83 elseif k == "repeat" then mpd_now.repeat_mode = v ~= "0"
84 elseif k == "single" then mpd_now.single_mode = v ~= "0"
85 elseif k == "random" then mpd_now.random_mode = v ~= "0"
86 elseif k == "consume" then mpd_now.consume_mode = v ~= "0"
91 mpd_notification_preset.text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
92 mpd_now.album, mpd_now.date, mpd_now.title)
96 if mpd_now.state == "play" then
97 if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track") then
98 helpers.set_map("current mpd track", mpd_now.title)
100 if followtag then mpd_notification_preset.screen = focused() end
103 preset = mpd_notification_preset,
105 icon_size = cover_size,
109 if not string.match(mpd_now.file, "http.*://") then -- local file instead of http stream
110 local path = string.format("%s/%s", music_dir, string.match(mpd_now.file, ".*/"))
111 local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'",
112 path:gsub("'", "'\\''"), cover_pattern)
113 helpers.async({ shell, "-c", cover }, function(current_icon)
114 common.icon = current_icon:gsub("\n", "")
115 if #common.icon == 0 then common.icon = nil end
116 mpd.id = naughty.notify(common).id
119 mpd.id = naughty.notify(common).id
123 elseif mpd_now.state ~= "pause" then
124 helpers.set_map("current mpd track", nil)
129 mpd.timer = helpers.newtimer("mpd", timeout, mpd.update, true, true)