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?
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!
Tinkerer
(aka DubhAd on GitHub)
April 18, 2020, 2:55pm
4
Moved… (you can’t add shortcuts like that AFAIK)
1 Like
duittenb
(Dirk)
September 29, 2021, 3:22pm
5
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
Wilco89
(Wilco Land)
September 29, 2021, 3:33pm
6
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
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.
Wilco89
(Wilco Land)
September 29, 2021, 6:00pm
8
somebody did reply, and i thought lets put the solution in here for the one person that does need this
4 Likes
duittenb
(Dirk)
October 1, 2021, 11:50am
9
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
jca001
(Jack Allen)
January 16, 2022, 10:54pm
11
From the example it looks like js_url value will always be the same. Where are the url_path values documented?