When you create advanced virtual devices, the icons should be displayed on homeydash.
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'