aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/services/mpris/consts.lua
blob: e86e50ec7f446015cf54f5adc51b95eb0827820b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.EXCLUDED_PLAYERS = {}

M.TRACKED_METADATA = {
    length = "mpris:length",
    album = "xesam:album",
    title = "xesam:title",
    artist = "xesam:artist",
    art = "mpris:artUrl",
}

return M