IOS Widget made with scriptable https://scriptable.app/ provided as is.
- Create a file named : garmin.conf.json in your scriptable folder with your login and password :
{
"login":"YOUR LOGIN HERE",
"pass":"YOUR PASSWORD HERE"
}
-
Create a new script in Scriptable app and copy the .js code in it
-
There are 6 themes available, the default one is blue orange. You can override it with one of the others by :
- List of the themes :
- bluenight
- blueorange
- orangered
- black
- evashogoki
- peach
- you can make your own theme by :
- Adding an object :
let theme_name = {
'bgGradient': getGradient("hex color","hex color"),
'chartGradient':getGradient("hex color","hex color"),
'chartMask': new Color("hex color"),
'chartMaskLarge': new Color("hex color"),
'circleChartBase': new Color("hex color"),
'circleChartPercent': new Color("hex color"),
'infosColor': Color.white(),
'subtitleColor': Color.white(),
'iconColor': new Color("hex color"),
'separator': new Color('hex color')
};
- And referencing it in the themes object :
let themes = {
'bluenight':blue_night,
'blueorange':blue_orange,
'orangered':orange_red,
'black':black,
'evashogoki': eva_shogoki,
'peach':peach,
'themename':theme_name
};
-
the curve represent your last hours steps not the full day (ie. are you active)
-
If you do not walk for a long time the widget is angry (show teeth ;p) :
- If you didn't do steps the widget is circonspect:
- if you meet your goal you have a green check :
A widget to show one of the last 10 drawing/paining/photo i.e image of your favorite users on twitter
- By tapping on the picture you can save it in your photos album
- By tapping the username you can go directly to the tweet on twitter.
- Create a new script in Scriptable app and copy the .js code in it
- For this widget to work you need to have a twitter developper account (free) and get your BEARER TOKEN
- Put your bearer token here in the .js file :
const BEARER_TOKEN = "YOUR BEARER TOKEN HERE";
- Edit your list of favorite users here (remove the exemples but they are great artist though ;p)
const USERS = [
'666pigeon',
'inukainuzoku',
'daisukerichard',
'Criisalys',
'pacota22ma'
];
- Choose run script in interactions when modifying widget to enable saving on tap