I finally got around to playing with the Scriptable app, something that had been on my list since I heard about the app’s newest ability — letting you turn custom Javascript into iOS 14 widgets.
The obvious place for me to start was to try and replicate the departure boards you see at Stockholm’s bus stops, since I had (very recently) also tried to write a macOS screensaver that would do just that, before life got in the way. Continuing that abandoned project in what seemed — and, as my experiments showed, definitely is — a “friendlier” environment seemed like the logical thing to do.
Getting started with Scriptable was pretty simple, thanks largely to the sample scripts within the app, specifically the View JSON and News in Widget scripts which do exactly what their names suggest. Taking the relevant bits from the two scripts and pointing them to SL’s awesome real-time API was as easy as I thought developing the screensaver would be.
I’ve released the script as a Gist (and embedded it below), and here are some thoughts on Scriptable and writing widgets on iOS 14, as well as the script itself:
- This is very much a quick-and-dirty script put together in a couple of hours, and is specific to my use case as someone who lives close to a bus stop (and no train line nearby) but hates waiting there. The idea is to monitor upcoming departures at a specific bus stop in one direction so I can time my own departure from the house to minimise waiting. It should be trivial to customise the script for a more generic requirement.
- I use a pure black background as my iPhone wallpaper, hence the motivation to use a pure black background colour for the widget. With that said, though the screenshot shows the widget being used on the home screen, I don’t foresee continuing to use it like this on a daily basis largely to the fact that there’s no way (that I’ve come across) to force the widget to update periodically (every minute would be ideal). Which is why I was forced to add the “Updated:” bit in the footer, so I know how dated the information that I’m looking at is, and to manually run the script again (which shows the updated widget as a popup), if necessary.

- Scriptable offers plenty of options that let you customise the look and feel of the widget but I didn’t bother experimenting with most of those. Ideally, I would love for the widget to look exactly like the boards you see at bus stops — the “stacks” added in the current TestFlight build should make it easier to do stuff like that — giving this very much “functional” widget some much-needed “whimsy”.
- As you can see I went the good-old fashioned “tabs and fixed-width fonts” route for formatting. For some reason using “regularMonospacedSystemFont” wouldn’t return a fixed-width font (as I understood it should), so I ended up hardcoding the font name itself, though Menlo wouldn’t have been my first pick otherwise. If you know why the regularMonospacedSystemFont approach didn’t work, please let me know via Twitter or the comments.
- I did all the development on the iPad (Scriptable of course is available for both iPhone and iPad) and while the development process itself was pretty straightforward, figuring out how to add a Scriptable widget to the ‘Today View’ when I was done took a lot more time than I’m willing to publicly admit. I kept looking for Scriptable under (what I now know is the old) list of widgets you see when you go to Edit > Customize from the bottom of the Today view. Maybe it’s just me, but that “+” sign to add iOS 14-only widgets is really easy to miss, especially when you are in landscape mode (which is how I use the iPad 99 percent of the time).
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: blue; icon-glyph: bus-alt; | |
// Script to show real time SL departure information using the SL real-time API https://www.trafiklab.se/node/15754/documentation | |
// Todo: Pass siteID and StopPointNumber as arguments | |
const siteID = "9001" // 9001 is T-Centralen, replace with your station's ID. See: https://www.trafiklab.se/api/sl-platsuppslag/dokumentation | |
const myKey = "thekey" // Replace with your key, get it from https://www.trafiklab.se/api/sl-platsuppslag | |
const timeWindow = "30" // Show departures in the next 30 minutes | |
const myStopPointNumber = "" // Specify a StopPointNumber if you want departures only from a specific spot — e.g. with buses, each "direction" has a direction has a different StopPointNumber, even if siteID is the same. Leave it blank if you want to track departures in all directions | |
const maxEntries = 6 // Display the next 6 departures | |
const maxChars = 22 // Max characters to display of the Destination (middle column) | |
const bgColour = new Color("#000000") // Use solid black background | |
const lineFont = new Font("Menlo",14) | |
const footerFont = new Font("Helvetica",13) | |
let url = "https://api.sl.se/api2/realtimedeparturesV4.json?key=" + myKey + "&siteid=" + siteID + "&timewindow=" + timeWindow | |
let req = new Request(url) | |
let json = await req.loadJSON() | |
// Todo: Show all/ specific departure types (e.g. Metro/ Train/ Ship etc.) as well | |
items = json.ResponseData.Buses // This script only cares about buses, refer to documentation at https://www.trafiklab.se/node/15754/documentation for details about other departure types | |
let widget = await createWidget(items) | |
if (!config.runsInWidget) { // Show a preview of the widget, if it's not being run as a widget | |
await widget.presentMedium() | |
} | |
Script.setWidget(widget) | |
Script.complete() | |
async function createWidget(items) { | |
let w = new ListWidget() | |
let num = 0 | |
w.backgroundColor = bgColour | |
for (item of items) { | |
let lineNumber = item.LineNumber | |
let stopPointNumber = item.StopPointNumber | |
if (myStopPointNumber != "") { // If it's not empty, we only care about a specific StopPointNumber | |
if (stopPointNumber != myStopPointNumber) { // We don't care about this StopPointNumber | |
continue | |
} | |
} | |
let destination = item.Destination | |
let displayTime = item.DisplayTime | |
let theLine = w.addText(lineNumber + "\t" + destination.trim(maxChars).padEnd(maxChars," ") + "\t" + displayTime) | |
theLine.font = lineFont | |
num = num + 1 | |
if (num == maxEntries) { | |
break | |
} | |
} | |
w.addSpacer(10) | |
let theFooter = w.addText("Updated: " + await timehMMSS()) | |
theFooter.font = footerFont | |
return w | |
} | |
async function timehMMSS() { | |
var theDate = new Date() | |
return theDate.getHours() + ":" + ("0"+theDate.getMinutes()).slice(-2) + ":" + ("0"+theDate.getSeconds()).slice(-2) | |
} |
While it’s convenient to have this information on the iPhone and iPad, the need to build that screensaver still remains — the idea is to have the Macs in the house act as giant departure boards you can glance at while getting ready. I hope to return to development soon and add to my screensaver collection of one.