Files
advanced-camera-card/docs/configuration/status-bar.md
T
Dermot Duffy ab683df5e8 feat: add problem detection framework for common problems (#2412)
Introduces a ProblemManager that detects and surfaces actionable issues
(stale config, legacy frigate-hass-card resources, slow/failed streams)
via status bar indicators and notification popups with fix actions.
2026-03-13 20:00:59 -07:00

5.4 KiB

status_bar

Configures the card status bar.

status_bar:
  # [...]
Option Default Description
position bottom Whether to place the status bar at the top or bottom of the card.
popup_seconds 3 The number of seconds to display the status bar when using the popup style.
height 40 The height of the status bar in pixels.
items Whether to show or hide built-in status bar items. See items.
style popup The status bar style to show by default, one of none, hover, hover-card, overlay, outside or popup. See style.

items

All configuration is under:

status_bar:
  items:
    [item]:
      # [...]

Available Items

Button name Description
engine The icon of the camera engine for the relevant camera.
problem_config_upgrade An indicator that appears when a configuration upgrade is available.
problem_legacy_resource An indicator that appears when a legacy frigate-hass-card resource is still registered.
problem_stream_not_loading An indicator that appears when a live stream has not loaded within 10 seconds.
resolution The detected media resolution (if any).
severity The media severity indicator (if any) for review severity (e.g. Frigate alerts/detections).
technology The detected media technology (if any).
title The media title.

Options for each item

Option Default Description
enabled true Whether or not to show the item.
priority 50 The item priority. Higher priority items are ordered closer to the start of the status bar (i.e. an item with priority 70 will order further to the left than an item with priority 60). Minimum 0, maximum 100.

style

This card supports several menu styles.

Key Description
hover-card Overlay the status bar over the card contents when the mouse is over the card, otherwise it is not shown.
hover Overlay the status bar over the card contents when the mouse is over the status bar, otherwise it is not shown.
none No status bar is shown.
outside Render the status bar outside the card (i.e. above it if position is top, or below it if position is bottom).
overlay Overlay the status bar over the card contents.
popup Equivalent to overlay except the status bar disappears after popup_seconds.

Fully expanded reference

Tip

To add custom status bar contents, see status bar custom elements.

status_bar:
  position: bottom
  popup_seconds: 3
  height: 40
  style: popup
  items:
    engine:
      enabled: true
      priority: 50
    problem_config_upgrade:
      enabled: true
      priority: 50
    problem_legacy_resource:
      enabled: true
      priority: 50
    problem_stream_not_loading:
      enabled: true
      priority: 50
    resolution:
      enabled: true
      priority: 50
    severity:
      enabled: true
      priority: 50
    technology:
      enabled: true
      priority: 50
    title:
      enabled: true
      priority: 50