mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-05-11 05:55:17 +00:00
change pause to play/pause
This commit is contained in:
@@ -335,8 +335,14 @@ function spotify() {
|
||||
break ;;
|
||||
|
||||
"pause" )
|
||||
cecho "Pausing Spotify.";
|
||||
osascript -e 'tell application "Spotify" to pause';
|
||||
state=$(osascript -e 'tell application "Spotify" to player state as string');
|
||||
if [ "$state" = "playing" ]; then
|
||||
cecho "Pausing Spotify.";
|
||||
else
|
||||
cecho "Playing Spotify.";
|
||||
fi
|
||||
|
||||
osascript -e 'tell application "Spotify" to playpause';
|
||||
break ;;
|
||||
|
||||
"quit" )
|
||||
|
||||
Reference in New Issue
Block a user