Skip to content
Jake Stanger edited this page Apr 7, 2023 · 3 revisions

Displays custom text, with the ability to embed scripts.

Configuration

Type: label

Name Type Default Description
label string null Text, optionally with embedded scripts.
JSON
{
  "end": [
    {
      "type": "label",
      "label": "random num: {{500:echo $RANDOM}}"
    }
  ]
}
TOML
[[end]]
type = "label"
label = "random num: {{500:echo $RANDOM}}"
YAML
end:
  - type: "label"
    label: "random num: {{500:echo $RANDOM}}"
Corn
{
  end = [
    {
      type = "label"
      label = "random num: {{500:echo $RANDOM}}"
    }
  ]
}

Styling

Selector Description
#label Label widget
Clone this wiki locally