Who can help me with change the size of my icons.
i have a garbage calendar. but the icons are small. how can i gett them bigger.
and the date is in wrong order. i need it in Day - Month - Year.
can someone help me and say wat i have to do and where? i’m a beginner.
My installation is Home assistant on a raspberry pi.
You probably need to make new sensors with a template sensor to get the dates the way you want.
perhaps something like this in configuration.yaml:
sensor: # make sure there is only one of this
- platform: template
sensors:
garbage:
friendly_name: "garbage sensor correct date format"
value_template: >-
{% set date = states('sensor.YOUR_GARBAGE_SENSOR') %}
{% if date == now().date() | string %}
today
{% elif date == (now().date() + timedelta(days=1)) | string %}
tomorrow
{% else %}
{{ as_timestamp(date) | timestamp_custom("%d-%m-%Y") }}
{% endif %}