prepare for new laptop
[dotfiles.git] / x / .local / bin / music_toggle
1 #!/bin/sh
2
3 # quodlibet
4 if hash quodlibet && quodlibet --status
5 then
6 quodlibet --play-pause
7 # or:
8 # dbus-send --print-reply --dest=net.sacredchao.QuodLibet /net/sacredchao/QuodLibet net.sacredchao.QuodLibet.PlayPause
9 fi
10
11
12 # spotify
13 if dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.ListNames | grep -q '"org.mpris.MediaPlayer2.spotify"'
14 then
15 dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause
16 fi