mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Merge pull request #4348 from andybateman/patch-1
Display song currently playing in iTunes
This commit is contained in:
commit
a51a9169a9
1 changed files with 12 additions and 0 deletions
|
@ -167,6 +167,17 @@ 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|status)
|
||||||
|
local state=`osascript -e 'tell application "iTunes" to player state as string'`
|
||||||
|
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'`
|
||||||
|
echo -E "Listening to $fg[yellow]$currenttrack$reset_color by $fg[yellow]$currentartist$reset_color";
|
||||||
|
else
|
||||||
|
echo "iTunes is" $state;
|
||||||
|
fi
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
shuf|shuff|shuffle)
|
shuf|shuff|shuffle)
|
||||||
# The shuffle property of current playlist can't be changed in iTunes 12,
|
# The shuffle property of current playlist can't be changed in iTunes 12,
|
||||||
# so this workaround uses AppleScript to simulate user input instead.
|
# so this workaround uses AppleScript to simulate user input instead.
|
||||||
|
@ -205,6 +216,7 @@ EOF
|
||||||
echo "\tnext|previous\tplay next or previous track"
|
echo "\tnext|previous\tplay next or previous track"
|
||||||
echo "\tshuf|shuffle [on|off|toggle]\tSet shuffled playback. Default: toggle. Note: toggle doesn't support the MiniPlayer."
|
echo "\tshuf|shuffle [on|off|toggle]\tSet shuffled playback. Default: toggle. Note: toggle doesn't support the MiniPlayer."
|
||||||
echo "\tvol\tSet the volume, takes an argument from 0 to 100"
|
echo "\tvol\tSet the volume, takes an argument from 0 to 100"
|
||||||
|
echo "\tplaying|status\tShow what song is currently playing in iTunes."
|
||||||
echo "\thelp\tshow this message and exit"
|
echo "\thelp\tshow this message and exit"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue