#HAOS tablet dashboard options?

1 messages ยท Page 1 of 1 (latest)

fallow heath
#

Okay so for my home assistant I have a couple of tablets that I'm going to put on the walls for like the kitchen, bedroom... so I can control and see all the information from my home assistant. What would be the best way to do this as in like via the home assistant app or via a web browser that locks it to a URL page?

deep hamlet
#

I like Fully Kiosk

#

Assuming these are Android tablets

quaint gate
fallow heath
deep hamlet
fallow heath
#

Oh ok
But is there like a non paid version?

#

Also using this still shows the like side bar which I don't really want on tablet

stone spade
#

With it you can append ?kiosk in the used url and boom. No header/sidebar.
Perfect for FKB

and the FKB is definitely worth paying the license, i paid 10 and don't regret it at all!
Plus, they arre transferrable when you change the tablet on a wall ๐Ÿ˜›

fallow heath
ancient aurora
#

you can hide all stuff ๐Ÿ˜‰ Fully Kiosk is one time payment (lifetime), but it's fully worth it, given all the sensors of tablet will be exposed to haos, then it's easy to automate stuff too.

#

combi of Fully Kiosk and kiosk_mode is perfect.

fallow heath
#

no i mean like so for example
keep red
hide blue

ancient aurora
#

yes can do. you can customize (hide or show) almost anything with kiosk_mode.

fallow heath
#

ok, how?

#

i looked into it and tried it but its not working or im doing it wrong

ancient aurora
#

hide_sidebar: true
hide_header: false

fallow heath
#

not bothered about the switch

dont really understand how it workes?

at the moment i just have the broser locked to my dashboard URL with "?kiosk" at the end of the url and it hides everything#

ancient aurora
#

i'll give you an example of my dashboard (at least the kiosk settings) for other kiosk settings, refer to docs please.

near bear
#

For a simple configuration, all you need to add to the dashboard (in the Raw Configuration Editor) is: yaml kiosk_mode: hide_sidebar: true hide_header: false

#

noDNS's example is a better example to use. I would recommend setting up a non-admin user for the tablet so the settings are applied correctly.

near bear
# fallow heath anywhere in dashboard?

It has to be towards the beginning of the code before the views: section.

kiosk_mode: 
  hide_sidebar: true
  hide_header: true

title: ViewSonic
views:
  - title: ViewSonic
    type: panel 
fallow heath
#

i dont have a views section?

near bear
#

Are you looking in the Raw Configuration?

fallow heath
#

No..

near bear
#

The code that noDNS and I provided goes into the Raw Configuration of the dashboard. From the docs:

Non-YAML users (Storage Mode) need to add the configuration to each lovelace panel going to Edit dashboard option (pencil icon on the top-right of the screen). Once in Edit Dashboard mode, click on the top-right three-dots button and select Raw configuration editor.

fallow heath
#

Ohh okk

ancient aurora
#

forgot to mention..my bad ๐Ÿ˜‰

fallow heath
#

Ok so, I've done it but still have side bar?

ancient aurora
#

clear cache?

fallow heath
near bear
#

If this is your first time being in the Raw Configuration and working with YAML, be mindful of what you do in here. You can easily break the dashboard. YAML is very sensitive with its spacing in sections (two spaces for indention).

deep hamlet
#

...and you need to have added ?kiosk to the URL for it to take effect

fallow heath
#

Ohh okk

near bear
#

You you post a screenshot of the first couple lines of your Raw Configuration?

deep hamlet
#

maybe step back a bit ๐Ÿ™‚

near bear
deep hamlet
#

maybe ๐Ÿคท. I use ?kiosk on all mine, and change the URL in fully kiosk to remove it if I need to change something in the profile

ancient aurora
#

me too

deep hamlet
#

maybe I could do something better

fallow heath
#

Haven't tried it via URL yet

near bear
#

That switch query string is for an automatic setting.

?kiosk to hide both header and sidebar

fallow heath
#

It worked thx

deep hamlet
#

excellent, that's exactly what I want

ancient aurora
#

noice

fallow heath
#

Is there a way to like hide the 3 dots on top right corner and is there a way to like centre the tabs on header?

near bear
#

3 dots = hide_overflow

#

is there a way to like centre the tabs on header?
There's no way to really center the tabs other than making you own header. It is doable, but I think it would be a bit of a hassle as you would have to repeat it on each view. Keeping each header up-to-date could get annoying. (With that said, there is a way more advanced option: working with a YAML-based dashboard. This is done totally in code; no visual editor. But it would allow using something like this: - !include header.yaml.)

near bear
# deep hamlet maybe I could do something better

This is where using an entity could be useful. You could have input_boolean.lemme_edit_the_dashboard. Then, ```yaml
kiosk_mode:
hide_header: '{{ is_state("input_boolean.lemme_edit_the_dashboard", "off") }}'
hide_sidebar: '{{ is_state("input_boolean.lemme_edit_the_dashboard", "off") }}'

deep hamlet
#

that's nice!

#

it's a pain in the neck to log into FK and change the URL

#

I just use the "go to this URL this time" option, but still

#

ya know, I guess I could just log into the individual kiosk user in a browser and change it there. I don't need do it on the tablet

#

Now that the profile options are based on the user

#

I almost never need to change anything, so it's pretty rare

near bear
#

Yeah. That's why when I saw you said that's how you do it, I wanted to make the above suggestion. I used to do this with my Fire tablets but have since gotten away from using entities. I used to have entities for just about everything... ๐Ÿคทโ€โ™‚๏ธ As seen in old, outdated code Line 70.

#

The templating capability is a lot nicer than the way this was set up.

deep hamlet
#

I've come to quite like my tablets:

ancient aurora
#

it's nice to have relevant info without cluttering the dashboard

#

less=more

near bear
#

Didn't realize this was an option.

near bear