mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
change pause to play/pause
This commit is contained in:
parent
2a5321f4e6
commit
96d57dc33e
1 changed files with 8 additions and 2 deletions
|
@ -335,8 +335,14 @@ function spotify() {
|
||||||
break ;;
|
break ;;
|
||||||
|
|
||||||
"pause" )
|
"pause" )
|
||||||
|
state=$(osascript -e 'tell application "Spotify" to player state as string');
|
||||||
|
if [ "$state" = "playing" ]; then
|
||||||
cecho "Pausing Spotify.";
|
cecho "Pausing Spotify.";
|
||||||
osascript -e 'tell application "Spotify" to pause';
|
else
|
||||||
|
cecho "Playing Spotify.";
|
||||||
|
fi
|
||||||
|
|
||||||
|
osascript -e 'tell application "Spotify" to playpause';
|
||||||
break ;;
|
break ;;
|
||||||
|
|
||||||
"quit" )
|
"quit" )
|
||||||
|
|
Loading…
Reference in a new issue