Quellcode durchsuchen

Fix Typo

Forgot quotes in if statement.
master
Nate Bohman vor 4 Jahren
Ursprung
Commit
7c803816b7
Signiert von: Nate Bohman <natrinicle@gmail.com> GPG-Schlüssel-ID: C10546A54ABA1CE5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      mpris_firefox_playstatus.sh

+ 1
- 1
mpris_firefox_playstatus.sh Datei anzeigen

@@ -2,7 +2,7 @@

firefox_mpris_dbus=$(dbus-send --print-reply --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.ListNames | grep -Po "org.mpris.*firefox[^\"]+")

if [ -n $firefox_mpris_dbus ]; then
if [ -n "${firefox_mpris_dbus}" ]; then
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 \")[^\"]+")

echo "Firefox MPRIS Instance ${firefox_mpris_dbus} has playback status ${playback_string}"

Laden…
Abbrechen
Speichern