mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-02 22:34:20 +02:00
spotify: switch back to MPRIS2 DBUS interface
One less daemon to run.
This commit is contained in:
parent
f04a53528f
commit
cda3a6448f
2 changed files with 4 additions and 8 deletions
|
@ -32,10 +32,8 @@ end
|
|||
local function cmd(command)
|
||||
local client = spotify()
|
||||
if client then
|
||||
os.execute("dbus-send --print-reply --reply-timeout=1000 --dest=org.gnome.SettingsDaemon "
|
||||
.. "/org/gnome/SettingsDaemon/MediaKeys "
|
||||
.. "org.gnome.SettingsDaemon.MediaKeys.PressMediaKey "
|
||||
.. "string:" .. command)
|
||||
os.execute("dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify " ..
|
||||
"/org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player." .. command)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -54,7 +52,7 @@ function show()
|
|||
end
|
||||
|
||||
function playpause()
|
||||
cmd("Play")
|
||||
cmd("PlayPause")
|
||||
end
|
||||
|
||||
function play()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue