mirror of https://github.com/lcpz/lain.git
Moving moc to contrib and adding license information
This commit is contained in:
parent
7d60073c29
commit
236d9e8a3d
|
@ -1,3 +1,11 @@
|
||||||
|
|
||||||
|
--[[
|
||||||
|
|
||||||
|
Licensed under GNU General Public License v2
|
||||||
|
* (c) 2014, anticlockwise <http://github.com/anticlockwise>
|
||||||
|
|
||||||
|
--]]
|
||||||
|
|
||||||
local helpers = require("lain.helpers")
|
local helpers = require("lain.helpers")
|
||||||
local async = require("lain.asyncshell")
|
local async = require("lain.asyncshell")
|
||||||
|
|
||||||
|
@ -35,6 +43,10 @@ local function worker(args)
|
||||||
helpers.set_map("current moc track", nil)
|
helpers.set_map("current moc track", nil)
|
||||||
|
|
||||||
function moc.update()
|
function moc.update()
|
||||||
|
-- mocp -i will produce output like:
|
||||||
|
-- Artist: Travis
|
||||||
|
-- Album: The Man Who
|
||||||
|
-- etc.
|
||||||
async.request("mocp -i", function(f)
|
async.request("mocp -i", function(f)
|
||||||
moc_now = {
|
moc_now = {
|
||||||
state = "N/A",
|
state = "N/A",
|
Loading…
Reference in New Issue