├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── README.md ├── dist └── animated-background.js └── hacs.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Villhellm/lovelace-animated-background/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Villhellm/lovelace-animated-background/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Villhellm/lovelace-animated-background/HEAD/README.md -------------------------------------------------------------------------------- /dist/animated-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Villhellm/lovelace-animated-background/HEAD/dist/animated-background.js -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Villhellm/lovelace-animated-background/HEAD/hacs.json --------------------------------------------------------------------------------