Files
dotfiles/local/bin/raycast/tidal.applescript
2025-02-19 10:13:52 +02:00

27 lines
634 B
AppleScript
Executable File

#!/usr/bin/osascript
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title Tidal: Toggle Play/Pause
# @raycast.mode silent
# @raycast.packagename Tidal
# Optional parameters
# @raycast.icon images/tidal-logo.png
# Documentation:
# @raycast.author Cebrail AKTAS
# @raycast.authorURL https://github.com/AktasC
# @raycast.description Play/Pause Tidal
tell application "System Events"
tell process "TIDAL"
click first menu item of menu "Playback" of menu bar 1
if name of first menu item of menu "Playback" of menu bar 1 is "Play" then
log "▶️"
else
log "⏸"
end if
end tell
end tell