From 8816e3d7afd9a44a3c9365eedc534025d4f7a79f Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Tue, 28 Apr 2026 10:31:18 -0400 Subject: [PATCH] Add Custom Sidebar developer tools shortcut --- config/README.md | 1 + config/configuration.yaml | 4 ++++ config/www/custom-sidebar-config.yaml | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 config/www/custom-sidebar-config.yaml diff --git a/config/README.md b/config/README.md index b01a14c9..27a17542 100755 --- a/config/README.md +++ b/config/README.md @@ -38,6 +38,7 @@ Live view of the `config/` directory my production Home Assistant instance loads - **Templates (`templates/`)** – Jinja helpers and speech templates reused by the notify/speech engines. - **Dashboards (`dashboards/`)** – YAML-managed Lovelace dashboards and UI resources (generated from storage, then maintained as code). - **www/ + custom components** – branding assets, floorplans, and any custom components the core install depends on. +- **Custom Sidebar (`www/custom-sidebar-config.yaml`)** – restores the Developer Tools shortcut in the bottom sidebar through the HACS-managed Custom Sidebar plugin. ### Featured automations by section | Section | Why start here | Featured automation(s) | diff --git a/config/configuration.yaml b/config/configuration.yaml index e4adb844..6baee265 100755 --- a/config/configuration.yaml +++ b/config/configuration.yaml @@ -27,6 +27,10 @@ homeassistant: default_config: +frontend: + extra_module_url: + - /hacsfiles/custom-sidebar/custom-sidebar-plugin.js + # ------------------------------------------------------------------- # Lovelace (YAML dashboards/resources) # Dashboard YAML lives under config/dashboards. Do not edit config/.storage. diff --git a/config/www/custom-sidebar-config.yaml b/config/www/custom-sidebar-config.yaml new file mode 100644 index 00000000..87bd644d --- /dev/null +++ b/config/www/custom-sidebar-config.yaml @@ -0,0 +1,18 @@ +###################################################################### +# @CCOSTAN - Follow Me on X +# For more info visit https://www.vcloudinfo.com/click-here +# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig +# ------------------------------------------------------------------- +# Custom Sidebar - Developer Tools shortcut +# Restores Developer Tools as a bottom sidebar item. +# ------------------------------------------------------------------- +# Notes: Custom Sidebar is loaded via frontend.extra_module_url and managed by HACS. +###################################################################### + +order: + - new_item: true + item: developer_tools + name: Developer Tools + icon: mdi:hammer + href: /config/developer-tools + bottom: true