@ReneTode Maybe I’ve misunderstood something. Have “custom_widgets” directory created in same location level as appdaemon.yaml. Created “basew2” folder within “custom_widgets”. “basew2” contains the 3 files, basew2.css, basew2.html, basew2.js. In .dash file added widget as widget_type: w2, in hadashboard I get “Unable to find widget type ‘w2’”. Am I doing something wrong. All w2 files are currently just copies of the weather widget.
there is 1 thing you forgot and that is to copy the weather.yaml from the widget dir and call that w2.yaml
thats just the start.
you MUST change parts from the widget files to get it to work.
in the css, js, html and yaml files you need to replace weather with w2
in the variables.yaml from the skin you use, you need to copy and rename all variables that are there for the weather widget. (if you use the default skin you need to do that there)
after all that is done you can start to change the newly created widget.
Thanks, I had done the w2.yaml file but forgot to mention it. The key was inside the w2.yaml (changing $weather to $w2) and adding that to the skin variables.yaml file. Thanks for the assist!