-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
tempus2016 edited this page Jun 24, 2026
·
1 revision
A Tabdeck card is a list of tabs, each wrapping one ordinary Lovelace card.
type: custom:tabdeck-card
tabs:
- name: Climate
icon: mdi:thermostat
card:
type: thermostat
entity: climate.living_room
- name: Lights
icon: mdi:lightbulb-group
card:
type: entities
entities:
- light.kitchen
- light.hallThis renders a two-tab card with an underline tab bar at the top.
tabs:
- name: Inbox
icon: mdi:email
badge: sensor.unread_count # shows the entity's state
card:
type: markdown
content: "..."See Badges for template badges.
tabs:
- name: Away mode
icon: mdi:home-export-outline
visibility:
- condition: state
entity: input_boolean.guest_mode
state: "on"
card:
type: entities
entities: [...]See Tab Visibility for all condition types.
You don't have to write YAML — open the card's Visual Editor to add tabs, pick icons, choose card types, and reorder tabs with a GUI.
- Configuration — the full option reference.
- Navigation & Persistence — swipe, keyboard, remembering the active tab.
Concepts
Features