- Introduced a new lock file for Home Assistant run state management. - Updated automations.yaml to enhance doorbell notification handling and streamline automation sequences. - Refactored scripts.yaml to unify mobile notification actions. - Added new KNX configurations for color control and additional switches. - Created a new mobile dashboard configuration for improved user interface. - Added multiple new dark icons for various integrations to enhance visual representation.
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
# Loads default set of integrations. Do not remove.
|
|
default_config:
|
|
|
|
http:
|
|
server_port: 443
|
|
ssl_certificate: /ssl/fullchain.pem
|
|
ssl_key: /ssl/privkey.pem
|
|
|
|
recorder:
|
|
db_url: !secret psql_string
|
|
db_retry_wait: 15 # Wait 15 seconds before retrying
|
|
exclude:
|
|
domains:
|
|
- automation
|
|
- updater
|
|
entity_globs:
|
|
- sensor.weather_*
|
|
entities:
|
|
- sun.sun # Don't record sun data
|
|
- sensor.last_boot # Comes from 'systemmonitor' sensor platform
|
|
- sensor.date
|
|
event_types:
|
|
- call_service # Don't record service calls
|
|
|
|
# Load frontend themes from the themes folder
|
|
frontend:
|
|
themes: !include_dir_merge_named themes
|
|
|
|
# Include packages
|
|
homeassistant:
|
|
packages: !include_dir_named packages
|
|
|
|
automation: !include automations.yaml
|
|
script: !include scripts.yaml
|
|
scene: !include scenes.yaml
|
|
knx: !include knx/knx.yaml
|
|
|
|
# Storage for Bubble Card Modules
|
|
template:
|
|
- trigger:
|
|
- trigger: event
|
|
event_type: bubble_card_update_modules
|
|
sensor:
|
|
- name: "Bubble Card Modules"
|
|
state: "saved"
|
|
icon: "mdi:puzzle"
|
|
attributes:
|
|
modules: "{{ trigger.event.data.modules }}"
|
|
last_updated: "{{ trigger.event.data.last_updated }}" |