38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | from xml.etree import ElementTree
# not a channel plugin, just a category in bookmarks, and a context menu
class radiotray:
# plugin info
module = "radiotray"
meta = plugin_meta()
# bookmarks cat
parent = None
bm = None
# radiotray config file / bookmarks
rt_xml = "%s/%s/%s" % (xdg_data_home, "radiotray", "bookmarks.xml")
|
|
| 38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | from xml.etree import ElementTree
# not a channel plugin, just a category in bookmarks, and a context menu
class radiotray:
# plugin info
module = __name__
meta = plugin_meta()
# bookmarks cat
parent = None
bm = None
# radiotray config file / bookmarks
rt_xml = "%s/%s/%s" % (xdg_data_home, "radiotray", "bookmarks.xml")
|