It's a type of Planche
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mpris_firefox_playstatus.sh 600B

1234567891011
  1. #!/usr/bin/env bash
  2. firefox_mpris_dbus=$(dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.ListNames | grep -Po "org.mpris.*firefox[^\"]+")
  3. if [ -n $firefox_mpris_dbus ]; then
  4. playback_string=$(dbus-send --print-reply --dest=${firefox_mpris_dbus} /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'PlaybackStatus' | grep -Po "(?<=string \")[^\"]+")
  5. echo "Firefox MPRIS Instance ${firefox_mpris_dbus} has playback status ${playback_string}"
  6. else
  7. echo "Firefox MPRIS Instance not found!"
  8. fi