mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
You can now use 'itunes status' as well as 'itunes playing' to show current track
This commit is contained in:
parent
29db0e0119
commit
9f2acdc445
1 changed files with 2 additions and 2 deletions
|
@ -161,9 +161,9 @@ function itunes() {
|
||||||
vol)
|
vol)
|
||||||
opt="set sound volume to $1" #$1 Due to the shift
|
opt="set sound volume to $1" #$1 Due to the shift
|
||||||
;;
|
;;
|
||||||
playing)
|
playing|status)
|
||||||
local state=`osascript -e 'tell application "iTunes" to player state as string'`
|
local state=`osascript -e 'tell application "iTunes" to player state as string'`
|
||||||
if [ "$state" = "playing" ]; then
|
if [[ "$state" = "playing" ]]; then
|
||||||
currenttrack=`osascript -e 'tell application "iTunes" to name of current track as string'`
|
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'`
|
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";
|
print -P "Listening to %F{yellow}$currenttrack%f by %F{yellow}$currentartist%f";
|
||||||
|
|
Loading…
Reference in a new issue