mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 13:50:09 +00:00
Merge pull request #2174 from oxnz/master
plugins/osx/osx.plugin.zsh: add itunes function to control itnues from the terminal
This commit is contained in:
commit
0d36ecfe38
1 changed files with 34 additions and 0 deletions
|
@ -157,3 +157,37 @@ function trash() {
|
||||||
function vncviewer() {
|
function vncviewer() {
|
||||||
open vnc://$@
|
open vnc://$@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# iTunes control function
|
||||||
|
function itunes() {
|
||||||
|
local opt=$1
|
||||||
|
shift
|
||||||
|
case "$opt" in
|
||||||
|
launch|play|pause|stop|rewind|resume|quit)
|
||||||
|
;;
|
||||||
|
mute)
|
||||||
|
opt="set mute to true"
|
||||||
|
;;
|
||||||
|
unmute)
|
||||||
|
opt="set mute to false"
|
||||||
|
;;
|
||||||
|
next|previous)
|
||||||
|
opt="$opt track"
|
||||||
|
;;
|
||||||
|
""|-h|--help)
|
||||||
|
echo "Usage: itunes <option>"
|
||||||
|
echo "option:"
|
||||||
|
echo "\tlaunch|play|pause|stop|rewind|resume|quit"
|
||||||
|
echo "\tmute|unmute\tcontrol volume set"
|
||||||
|
echo "\tnext|previous\tplay next or previous track"
|
||||||
|
echo "\thelp\tshow this message and exit"
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
print "Unkonwn option: $opt"
|
||||||
|
return 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
osascript -e "tell application \"iTunes\" to $opt"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue