Skip to main content
Version: 7.11

Random

Display randomly selected values on the board, refreshed on a schedule you control. No API key required.

Overview

The Random plugin generates fresh values on a configurable interval:

  • Pick a random item from your own list of 2–10 choices
  • Built-in coin flip (Heads or Tails)
  • Random board color as a rendered tile or as a color name
  • Values re-roll at your configured refresh interval (default: every 60 seconds)

Setup

  1. Open http://localhost:4420
  2. Go to the Integrations page
  3. Toggle Random on
  4. Click Configure to set your choices list and refresh interval
  5. Click Save Changes
tip

Random requires no external service or API key. All values are generated locally.

Available Variables

VariableDescriptionExample
{{random.choice}}Random pick from your configured choices listPizza
{{random.coin_flip}}Coin flip resultHeads
{{random.color}}Random board color as a rendered color tile(colored square)
{{random.color_name}}Random board color name as textgreen

Colors are limited to red, orange, yellow, green, blue, and violet. White and black are excluded because they render inverted on white-model boards.

Example Templates

Coin flip:

COIN FLIP
{{random.coin_flip}}

Pick from a custom list:

TONIGHT'S DINNER
{{random.choice}}

Random color tile with name:

{{random.color}} {{random.color_name}}

Combined:


FLIP: {{random.coin_flip}}
PICK: {{random.choice}}

COLOR: {{random.color}}

Next Steps