mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-08 08:50:47 +00:00
feat(bin): raycast helpers
Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
26
local/bin/raycast/tidal.applescript
Executable file
26
local/bin/raycast/tidal.applescript
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user