forked from Wobbl/Wobuzz
17 lines
272 B
Python
17 lines
272 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from .utils import *
|
||
|
|
||
|
|
||
|
class MPRISRoot(DBusInterface):
|
||
|
def get_all(self):
|
||
|
body = ({
|
||
|
"CanQuit": ("b", True),
|
||
|
"CanRaise": ("b", True)
|
||
|
},)
|
||
|
|
||
|
return body
|
||
|
|
||
|
def Raise(self, msg):
|
||
|
print("Raise!")
|