clangen / musikcube

a cross-platform, terminal-based music player, audio engine, metadata indexer, and server in c++
https://musikcube.com
BSD 3-Clause "New" or "Revised" License
4.08k stars 295 forks source link

Hotkey "Copy Path" and "Show in Finder" #681

Open NoNoNo opened 1 month ago

NoNoNo commented 1 month ago

Please implement a hotkey and a context menu option for:

Thanks for the great software!

NoNoNo commented 1 month ago

Or even more powerful:

Open file of track with custom shell script

e.g. open track with reveal-in-finder.sh

/usr/bin/osascript - "$1" <<APPLESCRIPT

  on run argv
    tell application "Finder"
      activate
      reveal POSIX file (item 1 of argv) as alias
    end tell
  end run

APPLESCRIPT