How to remove the gap between tiles?


Hello, can someone help with the following 2 questions please?

Is there a way to remove the gap between the power,label,mute,1,2,3,4,volume up and volume down tiles?
Also, is there a way to use custom icons (eg, instead of 1 to use a logo)?

thank you!

https://appdaemon.readthedocs.io/en/latest/DASHBOARD_INSTALL.html

Specifically widget_margins

and https://appdaemon.readthedocs.io/en/latest/DASHBOARD_CREATION.html#icons

the only way to do that is to change the widget dimension size.

example:

widget_dimension: [120x120]
layout:
  - lights,power,label,mute,apple(3x3)

will give the same result as

widget_dimension: [60x60]
layout:
  - lights(2x2),power(2x2),label(2x2),mute(2x2),apple(6x6)

but it gives you the option to use power(2x1),label(2x1),mute(2x1)
which makes the space below that widgets free for other things.