Skip to content

Instantly share code, notes, and snippets.

@marco79cgn
marco79cgn / spotify-now-playing.js
Last active May 12, 2024 16:02
A Scriptable iOS widget that shows what‘s playing on Spotify
let spotifyCredentials
let widget = await createWidget()
Script.setWidget(widget)
Script.complete()
async function createWidget() {
let widget = new ListWidget()
let spotifyIcon = await getImage("spotify-icon.png")
widget.backgroundColor = new Color("1e2040")