Homeydash.com, a Homey dashboard

When you create advanced virtual devices, the icons should be displayed on homeydash.
Screenshot from 2023-06-25 04-23-35

Or you can run homeydash locally.

  • Upload .svg icons to img/customicons/
  • Edit homeydash.app.js and add f.e. this code (this replaces the default icon for two matching device names):
// Subwoofer SubWoofer_icon.svg
      if ( device.name == "Sub LEM" || device.name == "Sub Yamaha" ) {
        $icon.style.webkitMaskImage = 'url(img/customicons/subwoofer_icon.svg)';
        $icon.style.backgroundImage = 'url(img/customicons/subwoofer_icon.svg)';
        $icon.style.backgroundSize = 'contain'

Screenshot from 2023-06-25 04-18-57

1 Like