I would like to have a card only show on certain days of the week (Saturday, Sunday, Monday)
I can have it show on only a particular date using my date sensor, but is there a way to do this with Day? Thanks
I would like to have a card only show on certain days of the week (Saturday, Sunday, Monday)
I can have it show on only a particular date using my date sensor, but is there a way to do this with Day? Thanks
You could use this as a condition
{{ now().strftime('%a') in ('Sat', 'Sun', 'Mon') }}
EDIT2… you would have to create a template binary sensor with above and use that in driving the conditional card (card templater does not work)
Ah okay - thanks! Will take a look into that tomorrow… […also adds researching templates to my list!!]