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.
4 Licensed under GNU General Public License v2
5 * (c) 2013, Luke Bonham
6 * (c) 2010, Adrian C. <anrxc@sysphere.org>
10 local helpers = require("lain.helpers")
11 local async = require("lain.asyncshell")
13 local escape_f = require("awful.util").escape
14 local naughty = require("naughty")
15 local wibox = require("wibox")
17 local os = { execute = os.execute,
19 local math = { floor = math.floor }
20 local string = { format = string.format,
22 gmatch = string.gmatch }
24 local setmetatable = setmetatable
28 local mpd = helpers.make_widget_textbox()
30 local function worker(args)
31 local args = args or {}
32 local timeout = args.timeout or 2
33 local password = args.password or ""
34 local host = args.host or "127.0.0.1"
35 local port = args.port or "6600"
36 local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
37 local cover_size = args.cover_size or 100
38 local default_art = args.default_art or ""
39 local notify = args.notify or "on"
40 local followtag = args.followtag or false
41 local echo_cmd = args.echo_cmd or "echo"
42 local settings = args.settings or function() end
44 local mpdcover = helpers.scripts_dir .. "mpdcover"
45 local mpdh = "telnet://" .. host .. ":" .. port
46 local echo = echo_cmd .. " 'password " .. password .. "\nstatus\ncurrentsong\nclose'"
48 mpd_notification_preset = {
49 title = "Now playing",
53 helpers.set_map("current mpd track", nil)
56 async.request(echo .. " | curl --connect-timeout 1 -fsm 3 " .. mpdh, function (f)
77 for line in string.gmatch(f, "[^\n]+") do
78 for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
79 if k == "state" then mpd_now.state = v
80 elseif k == "file" then mpd_now.file = v
81 elseif k == "Name" then mpd_now.name = escape_f(v)
82 elseif k == "Artist" then mpd_now.artist = escape_f(v)
83 elseif k == "Title" then mpd_now.title = escape_f(v)
84 elseif k == "Album" then mpd_now.album = escape_f(v)
85 elseif k == "Genre" then mpd_now.genre = escape_f(v)
86 elseif k == "Track" then mpd_now.track = escape_f(v)
87 elseif k == "Date" then mpd_now.date = escape_f(v)
88 elseif k == "Time" then mpd_now.time = v
89 elseif k == "elapsed" then mpd_now.elapsed = string.match(v, "%d+")
90 elseif k == "song" then mpd_now.pls_pos = v
91 elseif k == "playlistlength" then mpd_now.pls_len = v
92 elseif k == "repeat" then mpd_now.repeat_mode = v ~= "0"
93 elseif k == "single" then mpd_now.single_mode = v ~= "0"
94 elseif k == "random" then mpd_now.random_mode = v ~= "0"
95 elseif k == "consume" then mpd_now.consume_mode = v ~= "0"
100 mpd_notification_preset.text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
101 mpd_now.album, mpd_now.date, mpd_now.title)
105 if mpd_now.state == "play"
107 if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track")
109 helpers.set_map("current mpd track", mpd_now.title)
111 if string.match(mpd_now.file, "http.*://") == nil
113 os.execute(string.format("%s %q %q %d %q", mpdcover, music_dir,
114 mpd_now.file, cover_size, default_art))
115 current_icon = "/tmp/mpdcover.png"
117 current_icon = default_art
121 mpd_notification_preset.screen = awful.screen.focused()
124 mpd.id = naughty.notify({
125 preset = mpd_notification_preset,
127 replaces_id = mpd.id,
130 elseif mpd_now.state ~= "pause"
132 helpers.set_map("current mpd track", nil)
137 helpers.newtimer("mpd", timeout, mpd.update)
142 return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })