Skip to content

Instantly share code, notes, and snippets.

@JiceDessaint
JiceDessaint / gist:f375ba17ad00734125fa4d725940b2dc
Created September 22, 2020 12:17
Scriptable Nestor Menu Widget
let widget = new ListWidget()
// Background
let startColor = new Color("ff7b1c")
let endColor = new Color("fe9e0b")
let gradient = new LinearGradient()
gradient.colors = [startColor, endColor]
gradient.locations = [0.0, 1]
widget.backgroundGradient = gradient