matt8707 / ha-fusion

A modern, easy-to-use and performant custom Home Assistant dashboard
MIT License
2.28k stars 105 forks source link

Kiosk mode #602

Closed civic-sir closed 6 days ago

civic-sir commented 1 week ago

I'm trying to add Fusion as the only dashboard that my guest account can see. Given that Fusion is not really a dashboard that I can edit the code to add

kiosk_mode: non_admin_settings: kiosk: true ignore_entity_settings: true

On its raw configuration for dashboard. Is there a way to get this working for this one?

I tried to add it to fusions raw code Editor but that didn't work either.

Any help would be greatly appreciated.

Thanks a lot

xitters commented 1 week ago

Go to fussion addon, settings , and configure an access port imagen

Then if you go to your HA ip http://192.xx.xx.xxx:8099?menu=false And put Dashboard with URL. I think

xitters commented 1 week ago

Or try http://192.xx.xx.xxx:8099?kiosk

civic-sir commented 6 days ago

That didn't quiet work. I have to use http://192.xx.xx.xxx:8099/XXX_ha_fusion/ingress?kiosk -- Even ?menu=false doesn't work :(

Otherwise putting http://192.xx.xx.xxx:8099/?kiosk will just direct me to the default dashboard. Right now i have blank. Not the fusion dashboard.

xitters commented 6 days ago

First of all, try the HA IP address http://192.xx.xx.xxx:8099 only with the port that you configured in fusion, it should send you to the fusion page Sin título

xitters commented 6 days ago

This is how I cast the fusion page to a nest hub http://192.xx.xx.xxx:8099?menu=false 20241127_174353

civic-sir commented 6 days ago

Oh that is SWEET! Thats exactly what i want, and you got the menu at the top disappeared. Right now i have my HA through cloudflare tunnel.

It's at my second home property 5000miles away. Let me see if i can configure cloudflare with the url you provided. so that www.homeassistantaddress.com goes to the page you have. Thanks!

civic-sir commented 6 days ago

OMG You are a genius! That worked but small problem.

Screenshot 2024-11-27 at 2 02 09 PM

All of the icons and graph are missing :(

Second question: How did you remove the DOWN arrow on top right Screenshot 2024-11-27 at 2 03 17 PM

xitters commented 6 days ago

to cast you need https://github.com/AlexxIT/DashCast integration and make and automation like this:

alias: DashCast Nest HUB HA
description: ""
triggers:
  - entity_id: media_player.nesthubea23
    to: "off"
    for:
      minutes: 1
    trigger: state
  - entity_id: media_player.nesthubea23
    to: paused
    for:
      minutes: 1
    trigger: state
  - entity_id: media_player.nesthubea23
    to: idle
    for:
      minutes: 1
    trigger: state
conditions:
  - condition: state
    entity_id: binary_sensor.192_xxx_xx_xxx
    state: "on"
actions:
  - data:
      force: true
      reload_seconds: 0
      entity_id: media_player.nesthubea23
      url: http://192.xxx.xx.xxx:8099?menu=false
    action: dash_cast.load_url
mode: single
xitters commented 6 days ago

OMG You are a genius! That worked but small problem.

Screenshot 2024-11-27 at 2 02 09 PM

All of the icons and graph are missing :(

Second question: How did you remove the DOWN arrow on top right Screenshot 2024-11-27 at 2 03 17 PM

I dont know, internet conection problems? or you need to refresh, in my cast no have any of this problems.

The arrow hide with ?menu=false

xitters commented 6 days ago

clear browser cache? Ctrl+F5

civic-sir commented 6 days ago

Ah i see. Right now my Home Assistant is on a wall mount tablet at the property.

I think the reason the script / icons / graphs don't works is because i'm running this through my CloudFlare tunneling (remote connection). I will try this out when i'm at the property and local network. Thanks soooo much! This was helpful.

xitters commented 6 days ago

You can try how the cast looks with this

https://stestagg.github.io/dashcast/

Force display? put yes

civic-sir commented 6 days ago

The only downside with this template is that it does not allow for temperature control. Right now i have a thermostat and can't create an object that has

[+] CURRENT TEMP [-]

OR even those dials slider as seen below.

Screenshot 2024-11-27 at 2 22 00 PM

xitters commented 6 days ago

The only downside with this template is that it does not allow for temperature control. Right now i have a thermostat and can't create an object that has

[+] CURRENT TEMP [-]

OR even those dials slider as seen below.

Screenshot 2024-11-27 at 2 22 00 PM

I don't know about that, I'm just a simple fusion user. But what I can tell you is that it is in beta phase, the basics work. I use it because of how it looks on googlenesthub2 and because the interface loads faster on it.

civic-sir commented 6 days ago

Oh no problem! Yeah wasn't sure if they solved this one. Thanks sooo much for everything I'll go ahead and close this ticket.

xitters commented 6 days ago

here you have more information: https://community.home-assistant.io/t/ha-fusion-a-modern-easy-to-use-and-performant-custom-home-assistant-dashboard/662071/123