Browse Source

fix showStatus output

mahi97 8 years ago
parent
commit
6cbba3353f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/osx/osx.plugin.zsh

+ 1 - 1
plugins/osx/osx.plugin.zsh

@@ -310,7 +310,7 @@ function spotify() {
         position=$(osascript -e 'tell application "Spotify" to player position as string' | tr ',' '.');
         position=$(osascript -e 'tell application "Spotify" to player position as string' | tr ',' '.');
         position=$(echo "scale=2; $position / 60" | bc | awk '{printf "%0.2f", $0}');
         position=$(echo "scale=2; $position / 60" | bc | awk '{printf "%0.2f", $0}');
 
 
-        echo "$reset""Artist: $artist\nAlbum: $album\nTrack: $track \nPosition: $position / $duration";
+        printf "$reset""Artist: %s\nAlbum: %s\nTrack: %s \nPosition: %s / %s" "$artist" "$album" "$track" "$position" "$duration";
       fi
       fi
   }
   }