Tomorrow's day of the week

Is it possible to use a template or some other method to do something like:
{{now().strftime("%a") + 1}} to display tomorrow’s day of the week? I’m looking to make a weather style display with relevant to do items, weather, etc…

You’re after:

{{ (as_timestamp(now())+(60*60*24))|timestamp_custom('%A') }}
2 Likes

That worked great! Thanks so much. I spent way too long on this. I guess I should have asked for help sooner. Appreciate it.