(Only one of 1.1 - 1.8)
1.1 Using customizer for local install
customizer:
custom_ui: local1.2 Manually for local install
HA 0.53-0.58
frontend:
extra_html_url:
- /local/custom_ui/state-card-custom-ui.htmlHA 0.59+
frontend:
extra_html_url:
- /local/custom_ui/state-card-custom-ui.html
extra_html_url_es5:
- /local/custom_ui/state-card-custom-ui-es5.html
1.3 Using customizer for hosted use of head version
customizer:
custom_ui: hosted1.4 Manually for hosted use of head version
HA 0.53-0.58
frontend:
extra_html_url:
- https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui.htmlHA 0.59+
frontend:
extra_html_url:
- https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui.html
extra_html_url_es5:
- https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui-es5.html1.5 Using customizer for a specific release
customizer:
custom_ui: 201708301.6 Manually for hosted use of a specific release
HA 0.53-0.58
frontend:
extra_html_url:
- https://github.com/andrey-git/home-assistant-custom-ui/releases/download/20170830/state-card-custom-ui.htmlHA 0.59+
frontend:
extra_html_url:
- https://github.com/andrey-git/home-assistant-custom-ui/releases/download/20171129/state-card-custom-ui.html
extra_html_url_es5:
- https://github.com/andrey-git/home-assistant-custom-ui/releases/download/20171129/state-card-custom-ui-es5.html1.7 Using customizer for debug head version. (Only use for reporting readable Javascript errors!)
customizer:
custom_ui: debug1.8 Manually for debug head version. (Only use for reporting readable JavaScript errors!)
HA 0.53-0.58
frontend:
extra_html_url:
- https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui-dbg.htmlHA 0.59+
frontend:
extra_html_url:
- https://github.com/andrey-git/home-assistant-custom-ui/releases/download/20171129/state-card-custom-ui-dbg.html
extra_html_url_es5:
- https://github.com/andrey-git/home-assistant-custom-ui/releases/download/20171129/state-card-custom-ui-dbg-es5.htmlIn the customize: section of configuration.yaml put custom_ui_state_card: state-card-custom-ui for the relevant entities / domains.
To use CustomUI for light and cover domain:
homeassistant:
customize_glob:
light.*:
custom_ui_state_card: state-card-custom-ui
cover.*:
custom_ui_state_card: state-card-custom-uiNote that yaml keys can't start with an asterix. Use quotes in that case:
customize_glob:
"*.*":
custom_ui_state_card: state-card-custom-uiIn the customize: section of configuration.yaml put custom_ui_state_card: custom-ui for the relevant entities / domains.
For example:
homeassistant:
customize_glob:
light.*:
custom_ui_state_card: custom-ui
cover.*:
custom_ui_state_card: custom-uiNote that yaml keys can't start with an asterisk. Use quotes in that case:
customize_glob:
"*.*":
custom_ui_state_card: custom-ui