mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 18:46:45 +00:00
27 lines
634 B
AppleScript
Executable File
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
|