Skip to content

Instantly share code, notes, and snippets.

@joshdavenport
Created April 29, 2023 21:17
Show Gist options
  • Save joshdavenport/d6a38b7e5b9d9f1a76b0e44b78a7a5e5 to your computer and use it in GitHub Desktop.
Save joshdavenport/d6a38b7e5b9d9f1a76b0e44b78a7a5e5 to your computer and use it in GitHub Desktop.
// Name: Pause Any Music
// Description: Pause music playing from music apps
// Author: Josh Davenport-Smith
// Twitter: @joshdprts
import "@johnlindquist/kit";
const pauseScript = `
tell application "Spotify"
pause
end tell
tell application "Music"
pause
end tell
`;
exec(`osascript -e '${pauseScript}'`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment