dotfiles/home/apps/sketchybar/plugins/music_jump.nu
2024-07-13 01:20:00 +02:00

12 lines
300 B
Text
Executable file

#!/usr/bin/env nu
let appleScript = {|it| '
tell application "Music"
set _duration to duration of current track
set player position to (' + ($it | into string) + ' * _duration)
end tell'}
if ($env.PERCENTAGE? != null) {
osascript -e (do $appleScript (($env.PERCENTAGE | into int) / 100.0))
}