Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion triggers/pause-music/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Pause Apple Music

This trigger automatically pauses Apple Music when a call starts. It will initially prompt for access to Apple Music, after which no additional setup is required.
This trigger automatically pauses Apple Music when a call starts, and when a participant joins. It will initially prompt for access to Apple Music, after which no additional setup is required.
3 changes: 3 additions & 0 deletions triggers/pause-music/participant-joined
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env osascript

if application "Music" is running then tell application "Music" to pause
2 changes: 1 addition & 1 deletion triggers/pause-spotify/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Pause Spotify

This trigger automatically pauses Spotify when a call starts. It will initially prompt for access to Spotify, after which no additional setup is required.
This trigger automatically pauses Spotify when a call starts, and when a participant joins. It will initially prompt for access to Spotify, after which no additional setup is required.
3 changes: 3 additions & 0 deletions triggers/pause-spotify/participant-joined
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env osascript

if application "Spotify" is running then tell application "Spotify" to pause
Loading