2014-12-27 21:58:56 +01:00
|
|
|
--[[
|
2017-09-04 12:43:00 +02:00
|
|
|
|
|
|
|
Licensed under GNU General Public License v2
|
|
|
|
* (c) 2014, anticlockwise <http://github.com/anticlockwise>
|
|
|
|
|
2014-12-27 21:58:56 +01:00
|
|
|
--]]
|
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
local helpers = require("lain.helpers")
|
|
|
|
local shell = require("awful.util").shell
|
|
|
|
local focused = require("awful.screen").focused
|
|
|
|
local escape_f = require("awful.util").escape
|
|
|
|
local naughty = require("naughty")
|
|
|
|
local wibox = require("wibox")
|
2018-11-28 20:43:04 +01:00
|
|
|
local os = os
|
|
|
|
local string = string
|
2014-12-27 21:14:13 +01:00
|
|
|
|
2016-01-17 11:49:10 +01:00
|
|
|
-- MOC audio player
|
2017-02-08 14:15:48 +01:00
|
|
|
-- lain.widget.contrib.moc
|
2014-12-27 21:14:13 +01:00
|
|
|
|
2017-02-08 20:45:11 +01:00
|
|
|
local function factory(args)
|
2017-04-02 19:35:03 +02:00
|
|
|
local moc = { widget = wibox.widget.textbox() }
|
2017-01-20 20:58:22 +01:00
|
|
|
local args = args or {}
|
|
|
|
local timeout = args.timeout or 2
|
|
|
|
local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
|
|
|
|
local cover_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$"
|
|
|
|
local cover_size = args.cover_size or 100
|
|
|
|
local default_art = args.default_art or ""
|
|
|
|
local followtag = args.followtag or false
|
|
|
|
local settings = args.settings or function() end
|
2014-12-27 21:14:13 +01:00
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
moc_notification_preset = { title = "Now playing", timeout = 6 }
|
2014-12-27 21:14:13 +01:00
|
|
|
|
|
|
|
helpers.set_map("current moc track", nil)
|
|
|
|
|
|
|
|
function moc.update()
|
2017-01-20 20:58:22 +01:00
|
|
|
helpers.async("mocp -i", function(f)
|
2014-12-27 21:14:13 +01:00
|
|
|
moc_now = {
|
2014-12-27 21:58:56 +01:00
|
|
|
state = "N/A",
|
|
|
|
file = "N/A",
|
|
|
|
artist = "N/A",
|
|
|
|
title = "N/A",
|
|
|
|
album = "N/A",
|
2014-12-27 21:14:13 +01:00
|
|
|
elapsed = "N/A",
|
2014-12-27 21:58:56 +01:00
|
|
|
total = "N/A"
|
2014-12-27 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
2015-08-05 12:28:54 +02:00
|
|
|
for line in string.gmatch(f, "[^\n]+") do
|
2014-12-27 21:14:13 +01:00
|
|
|
for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
|
2017-01-20 20:58:22 +01:00
|
|
|
if k == "State" then moc_now.state = v
|
|
|
|
elseif k == "File" then moc_now.file = v
|
|
|
|
elseif k == "Artist" then moc_now.artist = escape_f(v)
|
|
|
|
elseif k == "SongTitle" then moc_now.title = escape_f(v)
|
|
|
|
elseif k == "Album" then moc_now.album = escape_f(v)
|
2014-12-27 21:14:13 +01:00
|
|
|
elseif k == "CurrentTime" then moc_now.elapsed = escape_f(v)
|
2017-01-20 20:58:22 +01:00
|
|
|
elseif k == "TotalTime" then moc_now.total = escape_f(v)
|
2014-12-27 21:14:13 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
moc_notification_preset.text = string.format("%s (%s) - %s\n%s", moc_now.artist,
|
|
|
|
moc_now.album, moc_now.total, moc_now.title)
|
|
|
|
widget = moc.widget
|
|
|
|
settings()
|
|
|
|
|
|
|
|
if moc_now.state == "PLAY" then
|
|
|
|
if moc_now.title ~= helpers.get_map("current moc track") then
|
|
|
|
helpers.set_map("current moc track", moc_now.title)
|
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
if followtag then moc_notification_preset.screen = focused() end
|
2015-07-29 13:21:59 +02:00
|
|
|
|
2017-01-20 20:58:22 +01:00
|
|
|
local common = {
|
|
|
|
preset = moc_notification_preset,
|
|
|
|
icon = default_art,
|
|
|
|
icon_size = cover_size,
|
2014-12-27 21:14:13 +01:00
|
|
|
replaces_id = moc.id,
|
2017-01-20 20:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
local path = string.format("%s/%s", music_dir, string.match(moc_now.file, ".*/"))
|
2017-01-23 23:03:13 +01:00
|
|
|
local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'", path, cover_pattern)
|
|
|
|
helpers.async({ shell, "-c", cover }, function(current_icon)
|
2017-01-20 20:58:22 +01:00
|
|
|
common.icon = current_icon:gsub("\n", "")
|
|
|
|
moc.id = naughty.notify(common).id
|
|
|
|
end)
|
2014-12-27 21:14:13 +01:00
|
|
|
end
|
|
|
|
elseif moc_now.state ~= "PAUSE" then
|
|
|
|
helpers.set_map("current moc track", nil)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2017-01-24 16:15:40 +01:00
|
|
|
moc.timer = helpers.newtimer("moc", timeout, moc.update, true, true)
|
2014-12-27 21:14:13 +01:00
|
|
|
|
2017-01-25 17:13:14 +01:00
|
|
|
return moc
|
2014-12-27 21:14:13 +01:00
|
|
|
end
|
|
|
|
|
2017-04-02 19:35:03 +02:00
|
|
|
return factory
|