浏览代码

Replaced the use of 'print' with 'echo' in order to sanitise track and artist names

Fixed indentation

Fixed indentation
Andy Bateman 9 年之前
父节点
当前提交
326c2b0859
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/osx/osx.plugin.zsh

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

@@ -166,9 +166,9 @@ function itunes() {
 			if [[ "$state" = "playing" ]]; then
 				currenttrack=`osascript -e 'tell application "iTunes" to name of current track as string'`
 				currentartist=`osascript -e 'tell application "iTunes" to artist of current track as string'`
-				print -P "Listening to %F{yellow}$currenttrack%f by %F{yellow}$currentartist%f";
+				echo -E "Listening to $fg[yellow]$currenttrack$reset_color by $fg[yellow]$currentartist$reset_color";
 			else
-				print "iTunes is" $state;
+				echo "iTunes is" $state;
 			fi
 			return 0
 			;;