Created
April 29, 2023 21:17
-
-
Save joshdavenport/d6a38b7e5b9d9f1a76b0e44b78a7a5e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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