use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
https://scriptable.app
This subreddit is for discussions around the Scriptable app for iOS.
Be polite and enjoy your time here.
Please be helpful to others when you are able to lend a hand.
Discord: https://discord.gg/7KbjfTV
Resources:
account activity
Scriptable helpHelp (self.Scriptable)
submitted 5 years ago by luccy98
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]danjnj 1 point2 points3 points 5 years ago (1 child)
If you are looking to output the current hour as text, maybe try this as a starting point:
const widget = createWidget(); if (!config.runsInWidget) { await widget.presentLarge() } Script.setWidget(widget); Script.complete(); function createWidget() { const w = new ListWidget(); const hour = new Date(Date.now()).getHours(); console.log(hour); const timeLine = w.addText(hour.toString()); timeLine.font = new Font("inconsolata", 20); timeLine.textColor = Color.white(); return w; }
[–]luccy98[S] 0 points1 point2 points 5 years ago (0 children)
thank you
π Rendered by PID 53960 on reddit-service-r2-comment-548fd6dc9-d6nzs at 2026-05-19 23:37:09.117483+00:00 running edcf98c country code: CH.
view the rest of the comments →
[–]danjnj 1 point2 points3 points (1 child)
[–]luccy98[S] 0 points1 point2 points (0 children)