added mpd support

This commit is contained in:
Ryan 2017-05-26 19:48:23 +02:00
parent 541b6e68c2
commit 49f9cc90bc
5 changed files with 129 additions and 1 deletions

View file

@ -66,5 +66,16 @@
"traffic": {
"rx": { "prefix": "down"},
"tx": { "prefix": "up"}
},
"mpd": {
"playing": { "prefix": ">" },
"paused": { "prefix": "||" },
"stopped": { "prefix": "[]" },
"prev": { "prefix": "|<" },
"next": { "prefix": ">|" },
"shuffle-on": { "prefix": "S" },
"shuffle-off": { "prefix": "[s]" },
"repeat-on": { "prefix": "R" },
"repeat-off": { "prefix": "[r]" }
}
}

View file

@ -82,5 +82,16 @@
"traffic":{
"rx": { "prefix": "" },
"tx": { "prefix": "" }
}
},
"mpd": {
"playing": { "prefix": "" },
"paused": { "prefix": "" },
"stopped": { "prefix": "" },
"prev": { "prefix": "" },
"next": { "prefix": "" },
"shuffle-on": { "prefix": "" },
"shuffle-off": { "prefix": "" },
"repeat-on": { "prefix": "" },
"repeat-off": { "prefix": "" }
}
}