├── .github └── workflows │ ├── docs.yml │ └── validate.yml ├── .gitignore ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── babel.config.json ├── docs ├── additional-resources.md ├── blur-style.png ├── browser-mod.md ├── camera-motion-detection.md ├── configuration.md ├── credits.md ├── dark-style.png ├── faq.md ├── grid-layout.png ├── index.md ├── info-box.md ├── installation.md ├── light-style.png ├── media-info.md ├── media-sources.md ├── other-configuration.md ├── quick-start.md ├── screensaver-screenshot.png ├── screensaver-video.webm ├── screensaver.md ├── styling.md ├── transparent-style.png ├── troubleshooting.md └── wallpanel.png ├── eslint.config.mjs ├── hacs.json ├── mkdocs.yml ├── package.json ├── rollup.config.js ├── wallpanel-src.js └── wallpanel.js /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/babel.config.json -------------------------------------------------------------------------------- /docs/additional-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/additional-resources.md -------------------------------------------------------------------------------- /docs/blur-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/blur-style.png -------------------------------------------------------------------------------- /docs/browser-mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/browser-mod.md -------------------------------------------------------------------------------- /docs/camera-motion-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/camera-motion-detection.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/credits.md -------------------------------------------------------------------------------- /docs/dark-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/dark-style.png -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/grid-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/grid-layout.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/info-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/info-box.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/light-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/light-style.png -------------------------------------------------------------------------------- /docs/media-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/media-info.md -------------------------------------------------------------------------------- /docs/media-sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/media-sources.md -------------------------------------------------------------------------------- /docs/other-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/other-configuration.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/screensaver-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/screensaver-screenshot.png -------------------------------------------------------------------------------- /docs/screensaver-video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/screensaver-video.webm -------------------------------------------------------------------------------- /docs/screensaver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/screensaver.md -------------------------------------------------------------------------------- /docs/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/styling.md -------------------------------------------------------------------------------- /docs/transparent-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/transparent-style.png -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/wallpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/docs/wallpanel.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/hacs.json -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/rollup.config.js -------------------------------------------------------------------------------- /wallpanel-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/wallpanel-src.js -------------------------------------------------------------------------------- /wallpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-a-n/lovelace-wallpanel/HEAD/wallpanel.js --------------------------------------------------------------------------------