Estimated reading time: 8 minutes
As a Home Assistant user, you certainly want a user interface that meets your individual needs. Home Assistant offers with panel_custom has its own option for sidebar customization, but this is very limited in its functions. With panel_custom
you can only add your own menu items and customize icons. A real restructuring of the sidebar or the targeted hiding of entries is not possible.
Here comes the Custom sidebar plugin comes into play. It offers you much more flexibility: you can change the order of the elements, display certain menu items for specific users or devices and even customize the design. This gives you a sidebar that is precisely tailored to your requirements.
For detailed instructions and an explanation of all configuration options, I recommend the YouTube video linked below. In this video, every single setting is explained in detail so that you receive comprehensive instructions for the exact setup. You can find any code from the video in this article so that you can use it directly without having to type it in.

What is Home Assistant?
Home Assistant is an open source platform for home automation that aims to connect and centrally control all devices in the home. It is designed to provide a unified user interface and simple, flexible control for a variety of smart home devices from different ecosystems. Here are some points in favor of Home Assistant:
- CompatibilityHome Assistant supports thousands of devices and services from various manufacturers, including lighting, air conditioning, heating, cameras, weather sensors, voice assistants and more.
- Local controlUnlike many commercial smart home platforms that rely on cloud services, Home Assistant runs locally on your network. This means increased privacy and reliability, as your smart home devices work even without an active internet connection.
- Automation and scenesOne of the main features of Home Assistant is the ability to create complex automations and scenarios. For example, you can have lights switch on automatically when it gets dark or turn on the heating when the temperature falls below a certain level.
- Simple user interfaceHome Assistant offers a user-friendly interface that makes it easy to monitor and control devices. This interface is fully customizable.
- Integration with voice assistantsHome Assistant can be integrated with voice assistants such as Amazon Alexa or Google Assistant to enable voice-controlled control of your smart home devices.
- Open source and community-drivenSince Home Assistant is open source, it is supported by an active community that is constantly developing new integrations and improving existing ones.
- Data protection and securityAs a locally running platform, Home Assistant has the advantage that the data remains within its own network. This protects privacy and increases security compared to cloud-based solutions.
In summary, Home Assistant is a powerful and flexible solution for those who want to design their own smart home and control their devices centrally, regardless of the manufacturer or ecosystem.
Installation of HACS and integration of Custom Sidebar in Home Assistant
Step 1: Installing HACS in Home Assistant
Home Assistant Community Store (HACS) is a custom add-on for Home Assistant that provides access to a variety of custom integrations and plugins developed by the community. How to install HACS:
- Check requirements: Make sure that your Home Assistant is ideally up to date.
- Download Execute script: Open a terminal for the Docker container version or the core version.
- Docker: Dial into the container with:
docker exec -it homeassistant bash
or (similar) - Core: Switch to the user who is running Home Assistant
- Execute the following command for both variants:
wget -O - https://get.hacs.xyz | bash -
- Docker: Dial into the container with:
- Restarting the Home Assistant: After the files have been copied, restart Home Assistant.
- Integrate HACS into Home AssistantGo to "Configuration" > "Integrations" > "Add" in the Home Assistant interface and search for HACS. Add it and enter your GitHub token if prompted.
For the supervised version, please refer to the Documentation of HACS itself to read about the installation.
Step 2: Add custom sidebar integration via HACS
After HACS is installed, you can simply add Custom Sidebar:
- Open HACS: Go to HACS in the Home Assistant interface.
- Search for integrationClick on "Integrations" and use the search function to search for "Custom Sidebar".
- Install custom sidebarFind Custom Sidebar in the list and click on "Install". This will add the integration to your Home Assistant.
- Adjustment in
configuration.yaml
: To ensure that the custom sidebar is also included, we need to add something in theconfiguration.yaml
add. Depending on whether you want to use YAML or JSON for your configuration file later, there is a small difference (I recommend YAML)- YAML:
frontend:
extra_module_url:
- /hacsfiles/custom-sidebar/custom-sidebar-yaml.js - JSON:
frontend:
extra_module_url:
- /hacsfiles/custom-sidebar/custom-sidebar-json.js
- YAML:
- Restarting the Home Assistant: Start Home Assistant again to apply the changes.
Conclusion
With these steps, you have successfully installed HACS in your Home Assistant and added the Custom Sidebar integration. This powerful combination opens up a world of additional features and customizations that have been and are being developed by the Home Assistant community. More blog posts and videos on useful integrations to follow. If you don't want to miss out, subscribe to my YouTube channel!
Configuration of the sidebar
After installation, you can customize the sidebar using a configuration file. To do this, create a configuration file in the /www/
a file called sidebar-config.yaml
or sidebar-config.json
depending on whether you prefer YAML or JSON. You can find an example configuration here.
I recommend that you create a YAML because, unlike JSON, you can also write comments there and comment out code if necessary. The file MUST be in the location, otherwise it will not be recognized. You cannot change this.
Example for sidebar-config.yaml
:
title: 'My home'
sidebar_editable: false
order:
- item: 'Overview'
icon: 'mdi:home'
order: 0
- new_item: true
item: Entities
href: "/config/entities"
icon_color: 'var(--accent-color)'
info: "{{ states('sensor.entities') }} Entities"
icon: mdi:hexagon-multiple
order: 1
- item: 'map'
icon: 'mdi:map'
hide: true
- item: 'Settings'
icon: 'mdi:cog'
order: 3
In this example we have:
- Set the title of the sidebar to "My home".
- The editable sidebar is deactivated in the browser.
- The order of the elements is defined and the "Map" element is hidden.
- Created a new element called Entities that leads directly to the entities and whose icon color takes over the accent color from the theme (default: orange)



Customization options
With the Custom Sidebar Plugin for Home Assistant, you have numerous customization options at your disposal:
- Title and subtitleSet individual titles and subtitles for the sidebar.
- Sequence of the elements: Determine the order in which the elements are to be displayed.
- IconsAssign specific icons to the sidebar elements.
- VisibilityHide certain elements for all or only for certain users.
- Standard path: Specify which path is opened by default when Home Assistant is loaded.
You can find a detailed overview of all configuration options in the Documentation.
Customization of the design
In addition to the functionality, you can also customize the appearance of the sidebar:
- ColorsChange the colors of titles, icons, texts and backgrounds.
- BackgroundsSet individual background images or colors for the sidebar and its elements.
- NotificationsCustomize the colors of notification indicators.
These design options allow you to customize the look of the sidebar to match your preferred theme. You can find more information on this here.
Exceptions for certain users or devices
With Custom Sidebar, you can specify that certain sidebar configurations are only used for certain users, devices or browsers. This is particularly practical if, for example, you want to display a different sidebar for admins than for normal users.
These exceptions are configured via the exceptions
in the sidebar-config.yaml
. You can define various criteria according to which a specific sidebar configuration is displayed or hidden:
- By userAssign different sidebar layouts to specific users.
- By browserShow a certain sidebar only in certain browsers.
- By deviceDisplay a customized sidebar for smartphones, tablets or desktops.
- By languageCustomize the sidebar based on the user's language setting.
YouTube video implementation
Conclusion
The Custom Sidebar plugin allows you to customize the Home Assistant sidebar perfectly to your needs. Whether you change the order, hide menu items or customize the design - with this plugin you have full control over your sidebar. The exceptions that allow you to target different user groups are particularly practical. Try it out and optimize your Home Assistant experience!
0 Comments