I have a dashboard setup with several views in it. I want to add a view that is only visible in the Xmas holiday season to switch on and off seasonal devices.
I set up a boolean entity called xmas_period and use an animation to toggle the boolean on & off between the desired dates.
I then edited my view as follows.
title: House Lights
views:
- title: Down Stairs
......
- title: Up Stairs
......
- title: Outside
......
- title: Misc Devices
......
- title: Xmas Devices
visible:
- condition: state
entity: input_boolean.xmas_period
state: 'on'
However this doesn’t seem to work.
Of course I can use conditional visibilty on all the devices on that view so they disappear but I wanted the entire view to hide (include the menu tab at the top of the dashboard)
Any ideas?