Add Links to the SideBar

Can you add links to the sidebar to HA settings?
I would like to add a link directly to Server Controls and to Integrations. That is where I go to most of the time so it would be great to create a shortcut directly to them.
I tried adding an panel iframe and that sort of works but it basically opens a window inside of a window.

Is this possible?

Shameless bump

Sorry @Tinkerer, you’re my go-to admin. Do you know if this is currently possible and if not move it to feature request? Thank you in advance!

:rofl:

Moved… (you can’t add shortcuts like that AFAIK)

1 Like

This would make SO MUCH sense.
Why would you click 2-5 times if you can create some kind of shortcut.
This type of customization make HA so much more usable.

DJ

Add this to your configuration.yaml file:

panel_custom:
  - name: ha_integ
    sidebar_title: Integrations
    sidebar_icon: mdi:puzzle
    js_url: /api/hassio/app/entrypoint.js
    url_path: "config/integrations"
    embed_iframe: true
    require_admin: true
    config:
      ingress: core_configurator
  - name: ha_server
    sidebar_title: Server Control
    sidebar_icon: mdi:server
    js_url: /api/hassio/app/entrypoint.js
    url_path: "config/server_control"
    embed_iframe: true
    require_admin: true
    config:
      ingress: core_configurator

image

and you can do all kind of things with this just read the docs

5 Likes

This couldn’t be done 2 years ago when I posted the question, whether you read the docs or not.

somebody did reply, and i thought lets put the solution in here for the one person that does need this :smiley:

4 Likes

Fantastic! That was exactly what I was looking for. Just by looking at the “Custom Panel” documentation I would never have found this solution.

Cheers
DJ

1 Like

Thx you so much !!!

From the example it looks like js_url value will always be the same. Where are the url_path values documented?