├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── workflows │ ├── docker-image.yml │ ├── publish.yml │ ├── python-app.yml │ └── stale.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── __main__.py ├── auth.py ├── config ├── README.md └── default_config ├── const.py ├── docker-compose.yaml ├── dzga.png ├── dzga_UI.png ├── helpers.py ├── req_handler.py ├── requirements ├── pip-requirements.txt └── system-requirements.txt ├── scripts ├── install.sh ├── install_synology.sh └── service-installer.sh ├── server.py ├── smarthome.py ├── sound ├── cache │ └── ok-en-false.mp3 ├── doorbell1.mp3 └── doorbell2.mp3 ├── static ├── css │ ├── material-dashboard-rtl.css │ ├── material-dashboard.css │ ├── material-dashboard.css.map │ └── material-dashboard.min.css ├── img │ ├── apple-icon.png │ ├── bg2.jpg │ ├── city-profile.jpg │ ├── city.jpg │ ├── cover.jpg │ ├── faces │ │ ├── avatar.jpg │ │ ├── card-profile1-square.jpg │ │ ├── card-profile2-square.jpg │ │ └── marc.jpg │ ├── favicon.png │ ├── google-home-ecosystem.jpg │ ├── mask.png │ ├── new_logo.png │ ├── sidebar-1.jpg │ ├── sidebar-2.jpg │ ├── sidebar-3.jpg │ └── sidebar-4.jpg ├── js │ ├── core │ │ ├── bootstrap-material-design.min.js │ │ ├── jquery.min.js │ │ └── popper.min.js │ ├── material-dashboard.js │ ├── material-dashboard.js.map │ ├── material-dashboard.min.js │ └── plugins │ │ ├── arrive.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-notify.js │ │ ├── bootstrap-selectpicker.js │ │ ├── bootstrap-tagsinput.js │ │ ├── chartist.min.js │ │ ├── fullcalendar.min.js │ │ ├── jasny-bootstrap.min.js │ │ ├── jquery-jvectormap.js │ │ ├── jquery.bootstrap-wizard.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.tagsinput.js │ │ ├── jquery.validate.min.js │ │ ├── moment.min.js │ │ ├── nouislider.min.js │ │ ├── perfect-scrollbar.jquery.min.js │ │ └── sweetalert2.js └── scss │ ├── material-dashboard.scss │ └── material-dashboard │ ├── _alerts.scss │ ├── _buttons.scss │ ├── _cards.scss │ ├── _checkboxes.scss │ ├── _core-bootstrap.scss │ ├── _dropdown.scss │ ├── _example-pages.scss │ ├── _fixed-plugin.scss │ ├── _footers.scss │ ├── _forms.scss │ ├── _headers.scss │ ├── _images.scss │ ├── _info-areas.scss │ ├── _input-group.scss │ ├── _misc.scss │ ├── _mixins.scss │ ├── _navbar.scss │ ├── _popover.scss │ ├── _popups.scss │ ├── _radios.scss │ ├── _responsive.scss │ ├── _ripples.scss │ ├── _sidebar-and-main-panel.scss │ ├── _social-buttons.scss │ ├── _tables.scss │ ├── _tabs.scss │ ├── _togglebutton.scss │ ├── _tooltip.scss │ ├── _type.scss │ ├── _variables.scss │ ├── bootstrap │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _tables.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _navbar-align.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ └── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ ├── cards │ ├── _card-plain.scss │ ├── _card-profile.scss │ └── _card-stats.scss │ ├── mixins │ ├── _alert.scss │ ├── _animations.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _chartist.scss │ ├── _colored-shadows.scss │ ├── _drawer.scss │ ├── _forms.scss │ ├── _hover.scss │ ├── _layout.scss │ ├── _navbar-colors.scss │ ├── _navs.scss │ ├── _sidebar-color.scss │ ├── _transparency.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ └── _vendor-prefixes.scss │ ├── plugins │ ├── _animate.scss │ ├── _chartist.scss │ └── _perfect-scrollbar.scss │ └── variables │ ├── _body.scss │ ├── _bootstrap-material-design-base.scss │ ├── _bootstrap-material-design.scss │ ├── _brand.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _code.scss │ ├── _colors-map.scss │ ├── _colors.scss │ ├── _custom-forms.scss │ ├── _drawer.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _layout.scss │ ├── _list-group.scss │ ├── _menu.scss │ ├── _modals.scss │ ├── _nav.scss │ ├── _pagination.scss │ ├── _shadow.scss │ ├── _snackbar.scss │ ├── _spacing.scss │ ├── _state.scss │ ├── _tables.scss │ ├── _tooltip.scss │ └── _type.scss ├── systemd ├── dzga.service └── dzga_synology ├── templates ├── base.html ├── config.html ├── devices.html ├── footer.html ├── help.html ├── home.html ├── js │ ├── functions.js │ └── sidebar.js ├── login.html ├── logs.html ├── navbar.html ├── settings.html └── sidebar.html └── trait.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/__main__.py -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/auth.py -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/config/README.md -------------------------------------------------------------------------------- /config/default_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/config/default_config -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/const.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dzga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/dzga.png -------------------------------------------------------------------------------- /dzga_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/dzga_UI.png -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/helpers.py -------------------------------------------------------------------------------- /req_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/req_handler.py -------------------------------------------------------------------------------- /requirements/pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/requirements/pip-requirements.txt -------------------------------------------------------------------------------- /requirements/system-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/requirements/system-requirements.txt -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/install_synology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/scripts/install_synology.sh -------------------------------------------------------------------------------- /scripts/service-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/scripts/service-installer.sh -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/server.py -------------------------------------------------------------------------------- /smarthome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/smarthome.py -------------------------------------------------------------------------------- /sound/cache/ok-en-false.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/sound/cache/ok-en-false.mp3 -------------------------------------------------------------------------------- /sound/doorbell1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/sound/doorbell1.mp3 -------------------------------------------------------------------------------- /sound/doorbell2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/sound/doorbell2.mp3 -------------------------------------------------------------------------------- /static/css/material-dashboard-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/css/material-dashboard-rtl.css -------------------------------------------------------------------------------- /static/css/material-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/css/material-dashboard.css -------------------------------------------------------------------------------- /static/css/material-dashboard.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/css/material-dashboard.css.map -------------------------------------------------------------------------------- /static/css/material-dashboard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/css/material-dashboard.min.css -------------------------------------------------------------------------------- /static/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/apple-icon.png -------------------------------------------------------------------------------- /static/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/bg2.jpg -------------------------------------------------------------------------------- /static/img/city-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/city-profile.jpg -------------------------------------------------------------------------------- /static/img/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/city.jpg -------------------------------------------------------------------------------- /static/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/cover.jpg -------------------------------------------------------------------------------- /static/img/faces/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/faces/avatar.jpg -------------------------------------------------------------------------------- /static/img/faces/card-profile1-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/faces/card-profile1-square.jpg -------------------------------------------------------------------------------- /static/img/faces/card-profile2-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/faces/card-profile2-square.jpg -------------------------------------------------------------------------------- /static/img/faces/marc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/faces/marc.jpg -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/google-home-ecosystem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/google-home-ecosystem.jpg -------------------------------------------------------------------------------- /static/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/mask.png -------------------------------------------------------------------------------- /static/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/new_logo.png -------------------------------------------------------------------------------- /static/img/sidebar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/sidebar-1.jpg -------------------------------------------------------------------------------- /static/img/sidebar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/sidebar-2.jpg -------------------------------------------------------------------------------- /static/img/sidebar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/sidebar-3.jpg -------------------------------------------------------------------------------- /static/img/sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/img/sidebar-4.jpg -------------------------------------------------------------------------------- /static/js/core/bootstrap-material-design.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/core/bootstrap-material-design.min.js -------------------------------------------------------------------------------- /static/js/core/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/core/jquery.min.js -------------------------------------------------------------------------------- /static/js/core/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/core/popper.min.js -------------------------------------------------------------------------------- /static/js/material-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/material-dashboard.js -------------------------------------------------------------------------------- /static/js/material-dashboard.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/material-dashboard.js.map -------------------------------------------------------------------------------- /static/js/material-dashboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/material-dashboard.min.js -------------------------------------------------------------------------------- /static/js/plugins/arrive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/arrive.min.js -------------------------------------------------------------------------------- /static/js/plugins/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /static/js/plugins/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/bootstrap-notify.js -------------------------------------------------------------------------------- /static/js/plugins/bootstrap-selectpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/bootstrap-selectpicker.js -------------------------------------------------------------------------------- /static/js/plugins/bootstrap-tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/bootstrap-tagsinput.js -------------------------------------------------------------------------------- /static/js/plugins/chartist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/chartist.min.js -------------------------------------------------------------------------------- /static/js/plugins/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/fullcalendar.min.js -------------------------------------------------------------------------------- /static/js/plugins/jasny-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jasny-bootstrap.min.js -------------------------------------------------------------------------------- /static/js/plugins/jquery-jvectormap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jquery-jvectormap.js -------------------------------------------------------------------------------- /static/js/plugins/jquery.bootstrap-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jquery.bootstrap-wizard.js -------------------------------------------------------------------------------- /static/js/plugins/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jquery.dataTables.min.js -------------------------------------------------------------------------------- /static/js/plugins/jquery.tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jquery.tagsinput.js -------------------------------------------------------------------------------- /static/js/plugins/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/jquery.validate.min.js -------------------------------------------------------------------------------- /static/js/plugins/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/moment.min.js -------------------------------------------------------------------------------- /static/js/plugins/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/nouislider.min.js -------------------------------------------------------------------------------- /static/js/plugins/perfect-scrollbar.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/perfect-scrollbar.jquery.min.js -------------------------------------------------------------------------------- /static/js/plugins/sweetalert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/js/plugins/sweetalert2.js -------------------------------------------------------------------------------- /static/scss/material-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_alerts.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_cards.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_checkboxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_checkboxes.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_core-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_core-bootstrap.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_dropdown.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_example-pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_example-pages.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_fixed-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_fixed-plugin.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_footers.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_headers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_headers.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_images.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_info-areas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_info-areas.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_input-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_misc.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_mixins.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_navbar.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_popover.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_popups.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_radios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_radios.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_responsive.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_ripples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_ripples.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_social-buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_tables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_tabs.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_togglebutton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_togglebutton.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_tooltip.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_type.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/_variables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_navbar-align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_navbar-align.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/cards/_card-plain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/cards/_card-plain.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/cards/_card-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/cards/_card-profile.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/cards/_card-stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/cards/_card-stats.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_alert.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_animations.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_chartist.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_colored-shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_colored-shadows.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_drawer.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_hover.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_layout.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_navbar-colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_navbar-colors.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_navs.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_sidebar-color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_sidebar-color.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_transparency.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_type.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_utilities.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_variables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/plugins/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/plugins/_animate.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/plugins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/plugins/_chartist.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/plugins/_perfect-scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/plugins/_perfect-scrollbar.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_body.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_bootstrap-material-design-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_bootstrap-material-design-base.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_bootstrap-material-design.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_bootstrap-material-design.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_brand.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_buttons.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_card.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_code.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_colors-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_colors-map.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_colors.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_custom-forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_drawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_drawer.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_dropdown.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_forms.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_layout.scss: -------------------------------------------------------------------------------- 1 | // Layout variables - evidently nothing to see here...remove now? 2 | -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_list-group.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_menu.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_modals.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_nav.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_pagination.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_shadow.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_snackbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_snackbar.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_spacing.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_state.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_state.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_tables.scss -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_tooltip.scss: -------------------------------------------------------------------------------- 1 | $tooltip-bg: rgba($grey-700, .9); 2 | -------------------------------------------------------------------------------- /static/scss/material-dashboard/variables/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/static/scss/material-dashboard/variables/_type.scss -------------------------------------------------------------------------------- /systemd/dzga.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/systemd/dzga.service -------------------------------------------------------------------------------- /systemd/dzga_synology: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/systemd/dzga_synology -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/config.html -------------------------------------------------------------------------------- /templates/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/devices.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/help.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/js/functions.js -------------------------------------------------------------------------------- /templates/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/js/sidebar.js -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/logs.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/settings.html -------------------------------------------------------------------------------- /templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/templates/sidebar.html -------------------------------------------------------------------------------- /trait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DewGew/Domoticz-Google-Assistant/HEAD/trait.py --------------------------------------------------------------------------------