Jaysce / Jukebox

A macOS app to view the currently playing song in the menu bar
https://www.jaysce.dev/projects/jukebox
MIT License
222 stars 19 forks source link

Click album cover to open Apple Music / Spotify #10

Open villeodell opened 2 years ago

villeodell commented 2 years ago

Is your feature request related to a problem? Please describe. Currently there is no way get to the Apple Music / Spotify app quickly via Jukebox.

Describe the solution you'd like Clicking the album cover would be configurable to either:

  1. switch to / focus the Apple Music / Spotify window (default), or
  2. open / view the currently playing album in Apple Music / Spotify (optionally)

Additional context When I'm listening to radio or a playlist someone else made and something plays that I like, I frequently bring up the app, look at what's playing, right click, love it, right click, select "Show in Apple Music" (to view the album the song belongs to). Being able to do this in one click from Jukebox would be ace 🌟

Related:

villeodell commented 2 years ago

Here's some AppleScript for this for use with Apple Music:

tell application "Music"
    set loved of current track to true
    reveal current track
    activate
end tell