├── Home Assistant ├── mdi.css ├── www │ ├── style.css │ ├── fonts │ │ ├── Lato-Black.eot │ │ ├── Lato-Black.ttf │ │ ├── Lato-Bold.eot │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Bold.woff │ │ ├── Lato-Light.eot │ │ ├── Lato-Light.ttf │ │ ├── Lato-Black.woff │ │ ├── Lato-Black.woff2 │ │ ├── Lato-Bold.woff2 │ │ ├── Lato-Light.woff │ │ ├── Lato-Light.woff2 │ │ ├── Lato-Medium.eot │ │ ├── Lato-Medium.ttf │ │ ├── Lato-Medium.woff │ │ ├── Lato-Medium.woff2 │ │ ├── Lato-Regular.eot │ │ ├── Lato-Regular.ttf │ │ ├── Lato-Regular.woff │ │ ├── Lato-Semibold.eot │ │ ├── Lato-Semibold.ttf │ │ ├── Lato-Regular.woff2 │ │ └── Lato-Semibold.woff │ └── community │ │ ├── kiosk-mode │ │ └── kiosk-mode.js.gz │ │ ├── weather-card │ │ ├── icons │ │ │ ├── day.png │ │ │ ├── fog.png │ │ │ ├── hail.png │ │ │ ├── haze.png │ │ │ ├── night.png │ │ │ ├── rainy.png │ │ │ ├── snowy.png │ │ │ ├── windy.png │ │ │ ├── cloudy.png │ │ │ ├── pouring.png │ │ │ ├── thunder.png │ │ │ ├── light-rain.png │ │ │ ├── partlycloudy.png │ │ │ ├── snowy-rainy.png │ │ │ ├── cloudy-night-3.png │ │ │ ├── lightning-rainy.png │ │ │ └── windy-variant.png │ │ ├── weather-card.js.gz │ │ └── weather-card-editor.js.gz │ │ ├── button-card │ │ └── button-card.js.gz │ │ ├── lovelace-card-mod │ │ ├── card-mod.js.gz │ │ ├── rollup.config.js.gz │ │ └── rollup.config.js │ │ ├── lovelace-layout-card │ │ ├── layout-card.js.gz │ │ ├── rollup.config.js.gz │ │ └── rollup.config.js │ │ ├── button-text-card │ │ └── button-text-card.js.gz │ │ ├── lovelace-state-switch │ │ ├── state-switch.js.gz │ │ ├── rollup.config.js.gz │ │ └── rollup.config.js │ │ ├── mini-graph-card │ │ └── mini-graph-card-bundle.js.gz │ │ ├── config-template-card │ │ └── config-template-card.js.gz │ │ ├── mini-media-player │ │ └── mini-media-player-bundle.js.gz │ │ ├── old │ │ └── Homekit-panel-card │ │ │ └── homekit-panel-card.js.gz │ │ └── atomic-calendar-revive │ │ └── atomic-calendar-revive.js.gz ├── custom weather card │ ├── readme.md │ ├── icons │ │ ├── day.png │ │ ├── fog.png │ │ ├── hail.png │ │ ├── haze.png │ │ ├── readme.md │ │ ├── cloudy.png │ │ ├── night.png │ │ ├── pouring.png │ │ ├── rainy.png │ │ ├── snowy.png │ │ ├── thunder.png │ │ ├── windy.png │ │ ├── light-rain.png │ │ ├── partlycloudy.png │ │ ├── snowy-rainy.png │ │ ├── cloudy-night-3.png │ │ ├── windy-variant.png │ │ └── lightning-rainy.png │ └── weather-card.js.gz └── themes.yaml ├── .vs └── slnx.sqlite ├── ActiveDirectory ├── users.xlsx └── CreateADUser │ ├── New user manual.docx │ └── New user manual.pdf ├── SmartMirror ├── modules │ └── default │ │ ├── alert │ │ ├── styles │ │ │ ├── left.css │ │ │ ├── right.css │ │ │ └── center.css │ │ ├── translations │ │ │ ├── hu.json │ │ │ ├── nl.json │ │ │ ├── en.json │ │ │ ├── bg.json │ │ │ ├── ru.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── es.json │ │ │ └── fr.json │ │ ├── templates │ │ │ ├── notification.njk │ │ │ └── alert.njk │ │ └── README.md │ │ ├── newsfeed │ │ ├── fullarticle.njk │ │ ├── oldconfig.njk │ │ ├── README.md │ │ └── newsfeed.css │ │ ├── updatenotification │ │ ├── updatenotification.css │ │ ├── README.md │ │ └── updatenotification.njk │ │ ├── weather │ │ ├── providers │ │ │ └── README.md │ │ └── README.md │ │ ├── clock │ │ └── README.md │ │ ├── calendar │ │ ├── README.md │ │ └── calendar.css │ │ └── defaultmodules.js └── fonts │ ├── lato │ ├── Lato-Black.eot │ ├── Lato-Black.ttf │ ├── Lato-Bold.eot │ ├── Lato-Bold.ttf │ ├── Lato-Bold.woff │ ├── Lato-Light.eot │ ├── Lato-Light.ttf │ ├── Lato-Black.woff │ ├── Lato-Black.woff2 │ ├── Lato-Bold.woff2 │ ├── Lato-Light.woff │ ├── Lato-Light.woff2 │ ├── Lato-Medium.eot │ ├── Lato-Medium.ttf │ ├── Lato-Medium.woff │ ├── Lato-Regular.eot │ ├── Lato-Regular.ttf │ ├── Lato-Medium.woff2 │ ├── Lato-Regular.woff │ ├── Lato-Regular.woff2 │ ├── Lato-Semibold.eot │ ├── Lato-Semibold.ttf │ └── Lato-Semibold.woff │ ├── node_modules │ ├── @fontsource │ │ ├── roboto │ │ │ ├── CHANGELOG.md │ │ │ ├── files │ │ │ │ ├── roboto-all-100-italic.woff │ │ │ │ ├── roboto-all-100-normal.woff │ │ │ │ ├── roboto-all-300-italic.woff │ │ │ │ ├── roboto-all-300-normal.woff │ │ │ │ ├── roboto-all-400-italic.woff │ │ │ │ ├── roboto-all-400-normal.woff │ │ │ │ ├── roboto-all-500-italic.woff │ │ │ │ ├── roboto-all-500-normal.woff │ │ │ │ ├── roboto-all-700-italic.woff │ │ │ │ ├── roboto-all-700-normal.woff │ │ │ │ ├── roboto-all-900-italic.woff │ │ │ │ ├── roboto-all-900-normal.woff │ │ │ │ ├── roboto-greek-100-italic.woff │ │ │ │ ├── roboto-greek-100-normal.woff │ │ │ │ ├── roboto-greek-300-italic.woff │ │ │ │ ├── roboto-greek-300-normal.woff │ │ │ │ ├── roboto-greek-400-italic.woff │ │ │ │ ├── roboto-greek-400-normal.woff │ │ │ │ ├── roboto-greek-500-italic.woff │ │ │ │ ├── roboto-greek-500-normal.woff │ │ │ │ ├── roboto-greek-700-italic.woff │ │ │ │ ├── roboto-greek-700-normal.woff │ │ │ │ ├── roboto-greek-900-italic.woff │ │ │ │ ├── roboto-greek-900-normal.woff │ │ │ │ ├── roboto-latin-100-italic.woff │ │ │ │ ├── roboto-latin-100-normal.woff │ │ │ │ ├── roboto-latin-300-italic.woff │ │ │ │ ├── roboto-latin-300-normal.woff │ │ │ │ ├── roboto-latin-400-italic.woff │ │ │ │ ├── roboto-latin-400-normal.woff │ │ │ │ ├── roboto-latin-500-italic.woff │ │ │ │ ├── roboto-latin-500-normal.woff │ │ │ │ ├── roboto-latin-700-italic.woff │ │ │ │ ├── roboto-latin-700-normal.woff │ │ │ │ ├── roboto-latin-900-italic.woff │ │ │ │ ├── roboto-latin-900-normal.woff │ │ │ │ ├── roboto-cyrillic-100-italic.woff │ │ │ │ ├── roboto-cyrillic-100-normal.woff │ │ │ │ ├── roboto-cyrillic-300-italic.woff │ │ │ │ ├── roboto-cyrillic-300-normal.woff │ │ │ │ ├── roboto-cyrillic-400-italic.woff │ │ │ │ ├── roboto-cyrillic-400-normal.woff │ │ │ │ ├── roboto-cyrillic-500-italic.woff │ │ │ │ ├── roboto-cyrillic-500-normal.woff │ │ │ │ ├── roboto-cyrillic-700-italic.woff │ │ │ │ ├── roboto-cyrillic-700-normal.woff │ │ │ │ ├── roboto-cyrillic-900-italic.woff │ │ │ │ ├── roboto-cyrillic-900-normal.woff │ │ │ │ ├── roboto-greek-100-italic.woff2 │ │ │ │ ├── roboto-greek-100-normal.woff2 │ │ │ │ ├── roboto-greek-300-italic.woff2 │ │ │ │ ├── roboto-greek-300-normal.woff2 │ │ │ │ ├── roboto-greek-400-italic.woff2 │ │ │ │ ├── roboto-greek-400-normal.woff2 │ │ │ │ ├── roboto-greek-500-italic.woff2 │ │ │ │ ├── roboto-greek-500-normal.woff2 │ │ │ │ ├── roboto-greek-700-italic.woff2 │ │ │ │ ├── roboto-greek-700-normal.woff2 │ │ │ │ ├── roboto-greek-900-italic.woff2 │ │ │ │ ├── roboto-greek-900-normal.woff2 │ │ │ │ ├── roboto-latin-100-italic.woff2 │ │ │ │ ├── roboto-latin-100-normal.woff2 │ │ │ │ ├── roboto-latin-300-italic.woff2 │ │ │ │ ├── roboto-latin-300-normal.woff2 │ │ │ │ ├── roboto-latin-400-italic.woff2 │ │ │ │ ├── roboto-latin-400-normal.woff2 │ │ │ │ ├── roboto-latin-500-italic.woff2 │ │ │ │ ├── roboto-latin-500-normal.woff2 │ │ │ │ ├── roboto-latin-700-italic.woff2 │ │ │ │ ├── roboto-latin-700-normal.woff2 │ │ │ │ ├── roboto-latin-900-italic.woff2 │ │ │ │ ├── roboto-latin-900-normal.woff2 │ │ │ │ ├── roboto-cyrillic-100-italic.woff2 │ │ │ │ ├── roboto-cyrillic-100-normal.woff2 │ │ │ │ ├── roboto-cyrillic-300-italic.woff2 │ │ │ │ ├── roboto-cyrillic-300-normal.woff2 │ │ │ │ ├── roboto-cyrillic-400-italic.woff2 │ │ │ │ ├── roboto-cyrillic-400-normal.woff2 │ │ │ │ ├── roboto-cyrillic-500-italic.woff2 │ │ │ │ ├── roboto-cyrillic-500-normal.woff2 │ │ │ │ ├── roboto-cyrillic-700-italic.woff2 │ │ │ │ ├── roboto-cyrillic-700-normal.woff2 │ │ │ │ ├── roboto-cyrillic-900-italic.woff2 │ │ │ │ ├── roboto-cyrillic-900-normal.woff2 │ │ │ │ ├── roboto-greek-ext-100-italic.woff │ │ │ │ ├── roboto-greek-ext-100-italic.woff2 │ │ │ │ ├── roboto-greek-ext-100-normal.woff │ │ │ │ ├── roboto-greek-ext-100-normal.woff2 │ │ │ │ ├── roboto-greek-ext-300-italic.woff │ │ │ │ ├── roboto-greek-ext-300-italic.woff2 │ │ │ │ ├── roboto-greek-ext-300-normal.woff │ │ │ │ ├── roboto-greek-ext-300-normal.woff2 │ │ │ │ ├── roboto-greek-ext-400-italic.woff │ │ │ │ ├── roboto-greek-ext-400-italic.woff2 │ │ │ │ ├── roboto-greek-ext-400-normal.woff │ │ │ │ ├── roboto-greek-ext-400-normal.woff2 │ │ │ │ ├── roboto-greek-ext-500-italic.woff │ │ │ │ ├── roboto-greek-ext-500-italic.woff2 │ │ │ │ ├── roboto-greek-ext-500-normal.woff │ │ │ │ ├── roboto-greek-ext-500-normal.woff2 │ │ │ │ ├── roboto-greek-ext-700-italic.woff │ │ │ │ ├── roboto-greek-ext-700-italic.woff2 │ │ │ │ ├── roboto-greek-ext-700-normal.woff │ │ │ │ ├── roboto-greek-ext-700-normal.woff2 │ │ │ │ ├── roboto-greek-ext-900-italic.woff │ │ │ │ ├── roboto-greek-ext-900-italic.woff2 │ │ │ │ ├── roboto-greek-ext-900-normal.woff │ │ │ │ ├── roboto-greek-ext-900-normal.woff2 │ │ │ │ ├── roboto-latin-ext-100-italic.woff │ │ │ │ ├── roboto-latin-ext-100-italic.woff2 │ │ │ │ ├── roboto-latin-ext-100-normal.woff │ │ │ │ ├── roboto-latin-ext-100-normal.woff2 │ │ │ │ ├── roboto-latin-ext-300-italic.woff │ │ │ │ ├── roboto-latin-ext-300-italic.woff2 │ │ │ │ ├── roboto-latin-ext-300-normal.woff │ │ │ │ ├── roboto-latin-ext-300-normal.woff2 │ │ │ │ ├── roboto-latin-ext-400-italic.woff │ │ │ │ ├── roboto-latin-ext-400-italic.woff2 │ │ │ │ ├── roboto-latin-ext-400-normal.woff │ │ │ │ ├── roboto-latin-ext-400-normal.woff2 │ │ │ │ ├── roboto-latin-ext-500-italic.woff │ │ │ │ ├── roboto-latin-ext-500-italic.woff2 │ │ │ │ ├── roboto-latin-ext-500-normal.woff │ │ │ │ ├── roboto-latin-ext-500-normal.woff2 │ │ │ │ ├── roboto-latin-ext-700-italic.woff │ │ │ │ ├── roboto-latin-ext-700-italic.woff2 │ │ │ │ ├── roboto-latin-ext-700-normal.woff │ │ │ │ ├── roboto-latin-ext-700-normal.woff2 │ │ │ │ ├── roboto-latin-ext-900-italic.woff │ │ │ │ ├── roboto-latin-ext-900-italic.woff2 │ │ │ │ ├── roboto-latin-ext-900-normal.woff │ │ │ │ ├── roboto-latin-ext-900-normal.woff2 │ │ │ │ ├── roboto-vietnamese-100-italic.woff │ │ │ │ ├── roboto-vietnamese-100-normal.woff │ │ │ │ ├── roboto-vietnamese-300-italic.woff │ │ │ │ ├── roboto-vietnamese-300-normal.woff │ │ │ │ ├── roboto-vietnamese-400-italic.woff │ │ │ │ ├── roboto-vietnamese-400-normal.woff │ │ │ │ ├── roboto-vietnamese-500-italic.woff │ │ │ │ ├── roboto-vietnamese-500-normal.woff │ │ │ │ ├── roboto-vietnamese-700-italic.woff │ │ │ │ ├── roboto-vietnamese-700-normal.woff │ │ │ │ ├── roboto-vietnamese-900-italic.woff │ │ │ │ ├── roboto-vietnamese-900-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-100-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-100-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-100-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-100-normal.woff2 │ │ │ │ ├── roboto-cyrillic-ext-300-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-300-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-300-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-300-normal.woff2 │ │ │ │ ├── roboto-cyrillic-ext-400-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-400-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-400-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-400-normal.woff2 │ │ │ │ ├── roboto-cyrillic-ext-500-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-500-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-500-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-500-normal.woff2 │ │ │ │ ├── roboto-cyrillic-ext-700-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-700-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-700-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-700-normal.woff2 │ │ │ │ ├── roboto-cyrillic-ext-900-italic.woff │ │ │ │ ├── roboto-cyrillic-ext-900-italic.woff2 │ │ │ │ ├── roboto-cyrillic-ext-900-normal.woff │ │ │ │ ├── roboto-cyrillic-ext-900-normal.woff2 │ │ │ │ ├── roboto-vietnamese-100-italic.woff2 │ │ │ │ ├── roboto-vietnamese-100-normal.woff2 │ │ │ │ ├── roboto-vietnamese-300-italic.woff2 │ │ │ │ ├── roboto-vietnamese-300-normal.woff2 │ │ │ │ ├── roboto-vietnamese-400-italic.woff2 │ │ │ │ ├── roboto-vietnamese-400-normal.woff2 │ │ │ │ ├── roboto-vietnamese-500-italic.woff2 │ │ │ │ ├── roboto-vietnamese-500-normal.woff2 │ │ │ │ ├── roboto-vietnamese-700-italic.woff2 │ │ │ │ ├── roboto-vietnamese-700-normal.woff2 │ │ │ │ ├── roboto-vietnamese-900-italic.woff2 │ │ │ │ └── roboto-vietnamese-900-normal.woff2 │ │ │ ├── greek-100.css │ │ │ ├── greek-300.css │ │ │ ├── greek-400.css │ │ │ ├── greek-500.css │ │ │ ├── greek-700.css │ │ │ ├── greek-900.css │ │ │ ├── latin-100.css │ │ │ ├── latin-300.css │ │ │ ├── latin-400.css │ │ │ ├── latin-500.css │ │ │ ├── latin-700.css │ │ │ ├── latin-900.css │ │ │ ├── greek-100-italic.css │ │ │ ├── greek-300-italic.css │ │ │ ├── greek-400-italic.css │ │ │ ├── greek-500-italic.css │ │ │ ├── greek-700-italic.css │ │ │ ├── greek-900-italic.css │ │ │ ├── latin-100-italic.css │ │ │ ├── latin-300-italic.css │ │ │ ├── latin-400-italic.css │ │ │ ├── latin-500-italic.css │ │ │ ├── latin-700-italic.css │ │ │ ├── latin-900-italic.css │ │ │ ├── cyrillic-100.css │ │ │ ├── cyrillic-300.css │ │ │ ├── cyrillic-400.css │ │ │ ├── cyrillic-500.css │ │ │ ├── cyrillic-700.css │ │ │ ├── cyrillic-900.css │ │ │ ├── cyrillic-100-italic.css │ │ │ ├── cyrillic-300-italic.css │ │ │ ├── cyrillic-400-italic.css │ │ │ ├── cyrillic-500-italic.css │ │ │ ├── cyrillic-700-italic.css │ │ │ ├── cyrillic-900-italic.css │ │ │ ├── greek-ext-100.css │ │ │ ├── greek-ext-300.css │ │ │ ├── greek-ext-400.css │ │ │ ├── greek-ext-500.css │ │ │ ├── greek-ext-700.css │ │ │ ├── greek-ext-900.css │ │ │ ├── latin-ext-100.css │ │ │ ├── latin-ext-300.css │ │ │ ├── latin-ext-400.css │ │ │ ├── latin-ext-500.css │ │ │ ├── latin-ext-700.css │ │ │ ├── latin-ext-900.css │ │ │ ├── greek-ext-100-italic.css │ │ │ ├── greek-ext-300-italic.css │ │ │ ├── greek-ext-400-italic.css │ │ │ ├── greek-ext-500-italic.css │ │ │ ├── greek-ext-700-italic.css │ │ │ ├── greek-ext-900-italic.css │ │ │ ├── latin-ext-100-italic.css │ │ │ ├── latin-ext-300-italic.css │ │ │ ├── latin-ext-400-italic.css │ │ │ ├── latin-ext-500-italic.css │ │ │ ├── latin-ext-700-italic.css │ │ │ ├── latin-ext-900-italic.css │ │ │ ├── vietnamese-100.css │ │ │ ├── vietnamese-300.css │ │ │ ├── vietnamese-400.css │ │ │ ├── vietnamese-500.css │ │ │ ├── vietnamese-700.css │ │ │ ├── vietnamese-900.css │ │ │ ├── cyrillic-ext-100.css │ │ │ ├── cyrillic-ext-300.css │ │ │ ├── cyrillic-ext-400.css │ │ │ ├── cyrillic-ext-500.css │ │ │ ├── cyrillic-ext-700.css │ │ │ ├── cyrillic-ext-900.css │ │ │ ├── vietnamese-100-italic.css │ │ │ ├── vietnamese-300-italic.css │ │ │ ├── vietnamese-400-italic.css │ │ │ ├── vietnamese-500-italic.css │ │ │ ├── vietnamese-700-italic.css │ │ │ ├── vietnamese-900-italic.css │ │ │ ├── cyrillic-ext-100-italic.css │ │ │ ├── cyrillic-ext-300-italic.css │ │ │ ├── cyrillic-ext-400-italic.css │ │ │ ├── cyrillic-ext-500-italic.css │ │ │ ├── cyrillic-ext-700-italic.css │ │ │ ├── cyrillic-ext-900-italic.css │ │ │ ├── package.json │ │ │ ├── metadata.json │ │ │ └── unicode.json │ │ └── roboto-condensed │ │ │ ├── CHANGELOG.md │ │ │ ├── files │ │ │ ├── roboto-condensed-all-300-italic.woff │ │ │ ├── roboto-condensed-all-300-normal.woff │ │ │ ├── roboto-condensed-all-400-italic.woff │ │ │ ├── roboto-condensed-all-400-normal.woff │ │ │ ├── roboto-condensed-all-700-italic.woff │ │ │ ├── roboto-condensed-all-700-normal.woff │ │ │ ├── roboto-condensed-greek-300-italic.woff │ │ │ ├── roboto-condensed-greek-300-normal.woff │ │ │ ├── roboto-condensed-greek-400-italic.woff │ │ │ ├── roboto-condensed-greek-400-normal.woff │ │ │ ├── roboto-condensed-greek-700-italic.woff │ │ │ ├── roboto-condensed-greek-700-normal.woff │ │ │ ├── roboto-condensed-latin-300-italic.woff │ │ │ ├── roboto-condensed-latin-300-normal.woff │ │ │ ├── roboto-condensed-latin-400-italic.woff │ │ │ ├── roboto-condensed-latin-400-normal.woff │ │ │ ├── roboto-condensed-latin-700-italic.woff │ │ │ ├── roboto-condensed-latin-700-normal.woff │ │ │ ├── roboto-condensed-cyrillic-300-italic.woff │ │ │ ├── roboto-condensed-cyrillic-300-normal.woff │ │ │ ├── roboto-condensed-cyrillic-400-italic.woff │ │ │ ├── roboto-condensed-cyrillic-400-normal.woff │ │ │ ├── roboto-condensed-cyrillic-700-italic.woff │ │ │ ├── roboto-condensed-cyrillic-700-normal.woff │ │ │ ├── roboto-condensed-greek-300-italic.woff2 │ │ │ ├── roboto-condensed-greek-300-normal.woff2 │ │ │ ├── roboto-condensed-greek-400-italic.woff2 │ │ │ ├── roboto-condensed-greek-400-normal.woff2 │ │ │ ├── roboto-condensed-greek-700-italic.woff2 │ │ │ ├── roboto-condensed-greek-700-normal.woff2 │ │ │ ├── roboto-condensed-latin-300-italic.woff2 │ │ │ ├── roboto-condensed-latin-300-normal.woff2 │ │ │ ├── roboto-condensed-latin-400-italic.woff2 │ │ │ ├── roboto-condensed-latin-400-normal.woff2 │ │ │ ├── roboto-condensed-latin-700-italic.woff2 │ │ │ ├── roboto-condensed-latin-700-normal.woff2 │ │ │ ├── roboto-condensed-cyrillic-300-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-300-normal.woff2 │ │ │ ├── roboto-condensed-cyrillic-400-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-400-normal.woff2 │ │ │ ├── roboto-condensed-cyrillic-700-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-700-normal.woff2 │ │ │ ├── roboto-condensed-greek-ext-300-italic.woff │ │ │ ├── roboto-condensed-greek-ext-300-italic.woff2 │ │ │ ├── roboto-condensed-greek-ext-300-normal.woff │ │ │ ├── roboto-condensed-greek-ext-300-normal.woff2 │ │ │ ├── roboto-condensed-greek-ext-400-italic.woff │ │ │ ├── roboto-condensed-greek-ext-400-italic.woff2 │ │ │ ├── roboto-condensed-greek-ext-400-normal.woff │ │ │ ├── roboto-condensed-greek-ext-400-normal.woff2 │ │ │ ├── roboto-condensed-greek-ext-700-italic.woff │ │ │ ├── roboto-condensed-greek-ext-700-italic.woff2 │ │ │ ├── roboto-condensed-greek-ext-700-normal.woff │ │ │ ├── roboto-condensed-greek-ext-700-normal.woff2 │ │ │ ├── roboto-condensed-latin-ext-300-italic.woff │ │ │ ├── roboto-condensed-latin-ext-300-italic.woff2 │ │ │ ├── roboto-condensed-latin-ext-300-normal.woff │ │ │ ├── roboto-condensed-latin-ext-300-normal.woff2 │ │ │ ├── roboto-condensed-latin-ext-400-italic.woff │ │ │ ├── roboto-condensed-latin-ext-400-italic.woff2 │ │ │ ├── roboto-condensed-latin-ext-400-normal.woff │ │ │ ├── roboto-condensed-latin-ext-400-normal.woff2 │ │ │ ├── roboto-condensed-latin-ext-700-italic.woff │ │ │ ├── roboto-condensed-latin-ext-700-italic.woff2 │ │ │ ├── roboto-condensed-latin-ext-700-normal.woff │ │ │ ├── roboto-condensed-latin-ext-700-normal.woff2 │ │ │ ├── roboto-condensed-vietnamese-300-italic.woff │ │ │ ├── roboto-condensed-vietnamese-300-normal.woff │ │ │ ├── roboto-condensed-vietnamese-400-italic.woff │ │ │ ├── roboto-condensed-vietnamese-400-normal.woff │ │ │ ├── roboto-condensed-vietnamese-700-italic.woff │ │ │ ├── roboto-condensed-vietnamese-700-normal.woff │ │ │ ├── roboto-condensed-cyrillic-ext-300-italic.woff │ │ │ ├── roboto-condensed-cyrillic-ext-300-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-ext-300-normal.woff │ │ │ ├── roboto-condensed-cyrillic-ext-300-normal.woff2 │ │ │ ├── roboto-condensed-cyrillic-ext-400-italic.woff │ │ │ ├── roboto-condensed-cyrillic-ext-400-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-ext-400-normal.woff │ │ │ ├── roboto-condensed-cyrillic-ext-400-normal.woff2 │ │ │ ├── roboto-condensed-cyrillic-ext-700-italic.woff │ │ │ ├── roboto-condensed-cyrillic-ext-700-italic.woff2 │ │ │ ├── roboto-condensed-cyrillic-ext-700-normal.woff │ │ │ ├── roboto-condensed-cyrillic-ext-700-normal.woff2 │ │ │ ├── roboto-condensed-vietnamese-300-italic.woff2 │ │ │ ├── roboto-condensed-vietnamese-300-normal.woff2 │ │ │ ├── roboto-condensed-vietnamese-400-italic.woff2 │ │ │ ├── roboto-condensed-vietnamese-400-normal.woff2 │ │ │ ├── roboto-condensed-vietnamese-700-italic.woff2 │ │ │ └── roboto-condensed-vietnamese-700-normal.woff2 │ │ │ ├── greek-300.css │ │ │ ├── greek-400.css │ │ │ ├── greek-700.css │ │ │ ├── latin-300.css │ │ │ ├── latin-400.css │ │ │ ├── latin-700.css │ │ │ ├── greek-300-italic.css │ │ │ ├── greek-400-italic.css │ │ │ ├── greek-700-italic.css │ │ │ ├── latin-300-italic.css │ │ │ ├── latin-400-italic.css │ │ │ ├── latin-700-italic.css │ │ │ ├── cyrillic-300.css │ │ │ ├── cyrillic-400.css │ │ │ ├── cyrillic-700.css │ │ │ ├── cyrillic-300-italic.css │ │ │ ├── cyrillic-400-italic.css │ │ │ ├── cyrillic-700-italic.css │ │ │ ├── greek-ext-300.css │ │ │ ├── greek-ext-400.css │ │ │ ├── greek-ext-700.css │ │ │ ├── latin-ext-300.css │ │ │ ├── latin-ext-400.css │ │ │ ├── latin-ext-700.css │ │ │ ├── greek-ext-300-italic.css │ │ │ ├── greek-ext-400-italic.css │ │ │ ├── greek-ext-700-italic.css │ │ │ ├── latin-ext-300-italic.css │ │ │ ├── latin-ext-400-italic.css │ │ │ ├── latin-ext-700-italic.css │ │ │ ├── vietnamese-300.css │ │ │ ├── vietnamese-400.css │ │ │ ├── vietnamese-700.css │ │ │ ├── cyrillic-ext-300.css │ │ │ ├── cyrillic-ext-400.css │ │ │ ├── cyrillic-ext-700.css │ │ │ ├── vietnamese-300-italic.css │ │ │ ├── vietnamese-400-italic.css │ │ │ ├── vietnamese-700-italic.css │ │ │ ├── cyrillic-ext-300-italic.css │ │ │ ├── cyrillic-ext-400-italic.css │ │ │ ├── cyrillic-ext-700-italic.css │ │ │ ├── metadata.json │ │ │ ├── package.json │ │ │ └── unicode.json │ └── .package-lock.json │ └── package.json ├── Windows 10 ├── Create test files.ps1 └── CreateTestDirs.ps1 ├── Graph └── config.json ├── PowerShellBasics └── promotion-2020.csv ├── UniFi VPN Client └── NordVPN WireGuard Example.conf ├── Office365 └── sleep progress.ps1 ├── Windows 11 └── Remove-Widget.ps1 ├── Connectors └── O365.ps1 └── SharePoint └── TermStoreApi.ps1 /Home Assistant/mdi.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Home Assistant/www/style.css: -------------------------------------------------------------------------------- 1 | body, html { 2 | font-family: "LatoWeb", sans-serif; 3 | } -------------------------------------------------------------------------------- /ActiveDirectory/users.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/ActiveDirectory/users.xlsx -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/styles/left.css: -------------------------------------------------------------------------------- 1 | .ns-box { 2 | margin-right: auto; 3 | text-align: left; 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/styles/right.css: -------------------------------------------------------------------------------- 1 | .ns-box { 2 | margin-left: auto; 3 | text-align: right; 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Black.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Black.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Bold.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Bold.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Light.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Light.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Black.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Bold.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Bold.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Light.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Black.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Black.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Bold.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Light.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Light.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Medium.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Medium.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Medium.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Regular.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Black.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Black.woff2 -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Bold.woff2 -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Light.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Light.woff2 -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Medium.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Medium.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Medium.woff2 -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Regular.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Semibold.eot -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Semibold.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Medium.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Regular.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Regular.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Semibold.eot -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Semibold.ttf -------------------------------------------------------------------------------- /SmartMirror/fonts/lato/Lato-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/lato/Lato-Semibold.woff -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /Home Assistant/www/fonts/Lato-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/fonts/Lato-Semibold.woff -------------------------------------------------------------------------------- /SmartMirror/modules/default/newsfeed/fullarticle.njk: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /Home Assistant/custom weather card/readme.md: -------------------------------------------------------------------------------- 1 | Small modified version of https://github.com/bramkragten/weather-card 2 | All credits go to Bram Kragten -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/styles/center.css: -------------------------------------------------------------------------------- 1 | .ns-box { 2 | margin-left: auto; 3 | margin-right: auto; 4 | text-align: center; 5 | } 6 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/updatenotification/updatenotification.css: -------------------------------------------------------------------------------- 1 | .module.updatenotification a.difflink { 2 | text-decoration: none; 3 | } 4 | -------------------------------------------------------------------------------- /ActiveDirectory/CreateADUser/New user manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/ActiveDirectory/CreateADUser/New user manual.docx -------------------------------------------------------------------------------- /ActiveDirectory/CreateADUser/New user manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/ActiveDirectory/CreateADUser/New user manual.pdf -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/day.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/fog.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/hail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/hail.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/haze.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/readme.md: -------------------------------------------------------------------------------- 1 | The .png Icons are designed by Lai Ming https://dribbble.com/shots/4447863-Weather-icons-free-download -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/cloudy.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/night.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/pouring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/pouring.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/rainy.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/snowy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/snowy.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/thunder.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/windy.png -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² értesítés", 3 | "welcome": "Üdvözöljük, indulás sikeres!" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Notificatie", 3 | "welcome": "Welkom, Succesvol gestart!" 4 | } 5 | -------------------------------------------------------------------------------- /Home Assistant/custom weather card/weather-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/weather-card.js.gz -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Notification", 3 | "welcome": "Welcome, start was successful!" 4 | } 5 | -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/light-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/light-rain.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/partlycloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/partlycloudy.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/snowy-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/snowy-rainy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/kiosk-mode/kiosk-mode.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/kiosk-mode/kiosk-mode.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/day.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/fog.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/hail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/hail.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/haze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/haze.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/night.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/rainy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/snowy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/snowy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/windy.png -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² нотификация", 3 | "welcome": "Добре дошли, стартирането беше успешно" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Уведомление", 3 | "welcome": "Добро пожаловать, старт был успешным!" 4 | } 5 | -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/cloudy-night-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/cloudy-night-3.png -------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/windy-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/windy-variant.png -------------------------------------------------------------------------------- /Home Assistant/www/community/button-card/button-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/button-card/button-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/cloudy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/pouring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/pouring.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/thunder.png -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Notifikation", 3 | "welcome": "Velkommen, modulet er succesfuldt startet!" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Benachrichtigung", 3 | "welcome": "Willkommen, Start war erfolgreich!" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Notificaciones", 3 | "welcome": "Bienvenido, ¡se iniciado correctamente!" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/translations/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "sysTitle": "MagicMirror² Notification", 3 | "welcome": "Bienvenue, le démarrage a été un succès!" 4 | } 5 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/newsfeed/oldconfig.njk: -------------------------------------------------------------------------------- 1 |
2 | {{ "MODULE_CONFIG_CHANGED" | translate({MODULE_NAME: "Newsfeed"}) | safe }} 3 |
-------------------------------------------------------------------------------- /Home Assistant/custom weather card/icons/lightning-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/custom weather card/icons/lightning-rainy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-card-mod/card-mod.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-card-mod/card-mod.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/light-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/light-rain.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/weather-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/weather-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/partlycloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/partlycloudy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/snowy-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/snowy-rainy.png -------------------------------------------------------------------------------- /Windows 10/Create test files.ps1: -------------------------------------------------------------------------------- 1 | # Make test files 2 | 3 | $path = "C:\temp" 4 | 5 | 1..10 | % { 6 | $newFile = "$path\test_file_$_.txt"; 7 | New-Item $newFile 8 | } 9 | -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-card-mod/rollup.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-card-mod/rollup.config.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-layout-card/layout-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-layout-card/layout-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/cloudy-night-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/cloudy-night-3.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/lightning-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/lightning-rainy.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/icons/windy-variant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/icons/windy-variant.png -------------------------------------------------------------------------------- /Home Assistant/www/community/weather-card/weather-card-editor.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/weather-card/weather-card-editor.js.gz -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | See the [Fontsource CHANGELOG.md](https://github.com/fontsource/fontsource/blob/main/CHANGELOG.md). 4 | -------------------------------------------------------------------------------- /Home Assistant/www/community/button-text-card/button-text-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/button-text-card/button-text-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-layout-card/rollup.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-layout-card/rollup.config.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-state-switch/state-switch.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-state-switch/state-switch.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-state-switch/rollup.config.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/lovelace-state-switch/rollup.config.js.gz -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | See the [Fontsource CHANGELOG.md](https://github.com/fontsource/fontsource/blob/main/CHANGELOG.md). 4 | -------------------------------------------------------------------------------- /Graph/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "AppId": { 3 | "ClientId": "", 4 | "ClientSecret": "", 5 | "RedirectUrl": "https://localhost:8000", 6 | "ResourceUrl": "https://graph.microsoft.com" 7 | } 8 | } -------------------------------------------------------------------------------- /Home Assistant/www/community/mini-graph-card/mini-graph-card-bundle.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/mini-graph-card/mini-graph-card-bundle.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/config-template-card/config-template-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/config-template-card/config-template-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/mini-media-player/mini-media-player-bundle.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/mini-media-player/mini-media-player-bundle.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/old/Homekit-panel-card/homekit-panel-card.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/old/Homekit-panel-card/homekit-panel-card.js.gz -------------------------------------------------------------------------------- /Home Assistant/www/community/atomic-calendar-revive/atomic-calendar-revive.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/Home Assistant/www/community/atomic-calendar-revive/atomic-calendar-revive.js.gz -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-all-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-greek-ext-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-latin-ext-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-cyrillic-ext-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-100-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-500-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto/files/roboto-vietnamese-900-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-all-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-greek-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-latin-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-italic.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-normal.woff -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-cyrillic-ext-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-300-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-400-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-italic.woff2 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruudmens/LazyAdmin/HEAD/SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/files/roboto-condensed-vietnamese-700-normal.woff2 -------------------------------------------------------------------------------- /SmartMirror/modules/default/weather/providers/README.md: -------------------------------------------------------------------------------- 1 | # Weather Module Weather Provider Development Documentation 2 | 3 | For how to develop your own weather provider, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/development/weather-provider.html). 4 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/templates/notification.njk: -------------------------------------------------------------------------------- 1 | {% if title %} 2 | {{ title }} 3 | {% endif %} 4 | {% if message %} 5 | {% if title %} 6 |
7 | {% endif %} 8 | {{ message }} 9 | {% endif %} 10 | -------------------------------------------------------------------------------- /PowerShellBasics/promotion-2020.csv: -------------------------------------------------------------------------------- 1 | name;jobtitle 2 | Adele Wilber;project manager 3 | Grady Archie;sr engineer 4 | Lee Gu;jr engineer 5 | Megan Bowen;recruiter 6 | Patti Fernadez;jr engineer 7 | Predeep Gupta;sr engineer 8 | Diego Siciliani;jr engineer 9 | Joni Sherman;recruiter 10 | Nestor Wilke;jr engineer 11 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/README.md: -------------------------------------------------------------------------------- 1 | # Module: Alert 2 | 3 | The alert module is one of the default modules of the MagicMirror². This module displays notifications from other modules. 4 | 5 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/alert.html). 6 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/clock/README.md: -------------------------------------------------------------------------------- 1 | # Module: Clock 2 | 3 | The `clock` module is one of the default modules of the MagicMirror². 4 | This module displays the current date and time. The information will be updated realtime. 5 | 6 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/clock.html). 7 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-greek-100-normal.woff2') format('woff2'), url('./files/roboto-greek-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-greek-300-normal.woff2') format('woff2'), url('./files/roboto-greek-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-greek-400-normal.woff2') format('woff2'), url('./files/roboto-greek-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-greek-500-normal.woff2') format('woff2'), url('./files/roboto-greek-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-greek-700-normal.woff2') format('woff2'), url('./files/roboto-greek-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-greek-900-normal.woff2') format('woff2'), url('./files/roboto-greek-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-latin-100-normal.woff2') format('woff2'), url('./files/roboto-latin-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-latin-300-normal.woff2') format('woff2'), url('./files/roboto-latin-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-latin-400-normal.woff2') format('woff2'), url('./files/roboto-latin-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-latin-500-normal.woff2') format('woff2'), url('./files/roboto-latin-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-latin-700-normal.woff2') format('woff2'), url('./files/roboto-latin-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-latin-900-normal.woff2') format('woff2'), url('./files/roboto-latin-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-greek-100-italic.woff2') format('woff2'), url('./files/roboto-greek-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-greek-300-italic.woff2') format('woff2'), url('./files/roboto-greek-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-greek-400-italic.woff2') format('woff2'), url('./files/roboto-greek-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-greek-500-italic.woff2') format('woff2'), url('./files/roboto-greek-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-greek-700-italic.woff2') format('woff2'), url('./files/roboto-greek-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-greek-900-italic.woff2') format('woff2'), url('./files/roboto-greek-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-latin-100-italic.woff2') format('woff2'), url('./files/roboto-latin-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-latin-300-italic.woff2') format('woff2'), url('./files/roboto-latin-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-latin-400-italic.woff2') format('woff2'), url('./files/roboto-latin-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-latin-500-italic.woff2') format('woff2'), url('./files/roboto-latin-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-latin-700-italic.woff2') format('woff2'), url('./files/roboto-latin-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-latin-900-italic.woff2') format('woff2'), url('./files/roboto-latin-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /UniFi VPN Client/NordVPN WireGuard Example.conf: -------------------------------------------------------------------------------- 1 | [Interface] 2 | ListenPort = 50837 3 | PublicKey = 4 | PrivateKey = 5 | Address = 10.5.0.2/32 6 | DNS = 1.1.1.1 7 | 8 | [Peer] 9 | PublicKey = 10 | AllowedIPs = 0.0.0.0/0, ::/0 11 | Endpoint = 185.187.0.37:51820 12 | PersistentKeepalive = 60 13 | ForcedHandshake = 5 -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-cyrillic-100-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-cyrillic-300-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-cyrillic-400-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-cyrillic-500-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-cyrillic-700-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-cyrillic-900-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/calendar/README.md: -------------------------------------------------------------------------------- 1 | # Module: Calendar 2 | 3 | The `calendar` module is one of the default modules of the MagicMirror². 4 | This module displays events from a public .ical calendar. It can combine multiple calendars. 5 | 6 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/calendar.html). 7 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-cyrillic-100-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-cyrillic-300-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-cyrillic-400-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-cyrillic-500-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-cyrillic-700-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-cyrillic-900-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-greek-ext-100-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-greek-ext-300-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-greek-ext-400-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-greek-ext-500-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-greek-ext-700-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-greek-ext-900-normal.woff2') format('woff2'), url('./files/roboto-greek-ext-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-latin-ext-100-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-latin-ext-300-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-latin-ext-400-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-latin-ext-500-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-latin-ext-700-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-latin-ext-900-normal.woff2') format('woff2'), url('./files/roboto-latin-ext-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-greek-ext-100-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-greek-ext-300-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-greek-ext-400-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-greek-ext-500-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-greek-ext-700-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/greek-ext-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-greek-ext-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-greek-ext-900-italic.woff2') format('woff2'), url('./files/roboto-greek-ext-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-latin-ext-100-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-latin-ext-300-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-latin-ext-400-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-latin-ext-500-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-latin-ext-700-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/latin-ext-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-latin-ext-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-latin-ext-900-italic.woff2') format('woff2'), url('./files/roboto-latin-ext-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-vietnamese-100-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-vietnamese-300-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-vietnamese-400-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-vietnamese-500-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-vietnamese-700-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-vietnamese-900-normal.woff2') format('woff2'), url('./files/roboto-vietnamese-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-100.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-100-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-cyrillic-ext-100-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-100-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-cyrillic-ext-300-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-500.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-500-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-cyrillic-ext-500-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-500-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-900.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-900-normal*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-cyrillic-ext-900-normal.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-900-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-vietnamese-100-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-vietnamese-300-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-vietnamese-400-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-vietnamese-500-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-vietnamese-700-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/vietnamese-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-vietnamese-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-vietnamese-900-italic.woff2') format('woff2'), url('./files/roboto-vietnamese-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-100-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-100-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 100; 7 | src: url('./files/roboto-cyrillic-ext-100-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-100-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-cyrillic-ext-300-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-cyrillic-ext-400-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-500-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-500-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 500; 7 | src: url('./files/roboto-cyrillic-ext-500-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-500-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-cyrillic-ext-700-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/cyrillic-ext-900-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-cyrillic-ext-900-italic*/ 2 | @font-face { 3 | font-family: 'Roboto'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 900; 7 | src: url('./files/roboto-cyrillic-ext-900-italic.woff2') format('woff2'), url('./files/roboto-cyrillic-ext-900-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-greek-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-greek-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-greek-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-latin-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-latin-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-latin-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-greek-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-greek-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-greek-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-latin-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-latin-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-latin-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/updatenotification/README.md: -------------------------------------------------------------------------------- 1 | # Module: Update Notification 2 | 3 | The `updatenotification` module is one of the default modules of the MagicMirror². 4 | This will display a message whenever a new version of the MagicMirror² application is available. 5 | 6 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/updatenotification.html). 7 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-cyrillic-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-cyrillic-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-cyrillic-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-cyrillic-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-cyrillic-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-cyrillic-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-greek-ext-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-greek-ext-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-greek-ext-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-latin-ext-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-latin-ext-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-latin-ext-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-greek-ext-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-greek-ext-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/greek-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-greek-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-greek-ext-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-greek-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-latin-ext-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-latin-ext-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/latin-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-latin-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-latin-ext-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-latin-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-vietnamese-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-vietnamese-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-vietnamese-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-300.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-300-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-cyrillic-ext-300-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-300-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-400.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-400-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-400-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-700.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-700-normal*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: normal; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-cyrillic-ext-700-normal.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-700-normal.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-vietnamese-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-vietnamese-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/vietnamese-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-vietnamese-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-vietnamese-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-vietnamese-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-300-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-300-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 300; 7 | src: url('./files/roboto-condensed-cyrillic-ext-300-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-300-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-400-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-400-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 400; 7 | src: url('./files/roboto-condensed-cyrillic-ext-400-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-400-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/cyrillic-ext-700-italic.css: -------------------------------------------------------------------------------- 1 | /* roboto-condensed-cyrillic-ext-700-italic*/ 2 | @font-face { 3 | font-family: 'Roboto Condensed'; 4 | font-style: italic; 5 | font-display: swap; 6 | font-weight: 700; 7 | src: url('./files/roboto-condensed-cyrillic-ext-700-italic.woff2') format('woff2'), url('./files/roboto-condensed-cyrillic-ext-700-italic.woff') format('woff'); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /Office365/sleep progress.ps1: -------------------------------------------------------------------------------- 1 | 2 | Function Sleep-Progress($seconds) { 3 | $s = 0; 4 | Do { 5 | $p = [math]::Round(100 - (($seconds - $s) / $seconds * 100)); 6 | Write-Progress -Activity "Waiting..." -Status "$p% Complete:" -SecondsRemaining ($seconds - $s) -PercentComplete $p; 7 | [System.Threading.Thread]::Sleep(500) 8 | $s++; 9 | } 10 | While($s -lt $seconds); 11 | 12 | } 13 | 14 | Sleep-Progress 7 -------------------------------------------------------------------------------- /SmartMirror/modules/default/weather/README.md: -------------------------------------------------------------------------------- 1 | # Weather Module 2 | 3 | This module aims to be the replacement for the current `currentweather` and `weatherforcast` modules. The module will be configurable to be used as a current weather view, or to show the forecast. This way the module can be used twice to fulfill both purposes. 4 | 5 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/weather.html). 6 | -------------------------------------------------------------------------------- /SmartMirror/fonts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "magicmirror-fonts", 3 | "description": "Package for fonts use by MagicMirror² Core.", 4 | "repository": { 5 | "type": "git", 6 | "url": "git+https://github.com/MichMich/MagicMirror.git" 7 | }, 8 | "license": "MIT", 9 | "bugs": { 10 | "url": "https://github.com/MichMich/MagicMirror/issues" 11 | }, 12 | "dependencies": { 13 | "@fontsource/roboto": "^4.5.7", 14 | "@fontsource/roboto-condensed": "^4.5.8" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Windows 11/Remove-Widget.ps1: -------------------------------------------------------------------------------- 1 | # Remove the installed package for each user 2 | Get-AppxPackage -AllUsers | Where-Object {$_.Name -like "*WebExperience*"} | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue 3 | 4 | # Remove the provisioned package for new users 5 | $AppxRemoval = Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -like "*WebExperience*"} 6 | ForEach ( $App in $AppxRemoval) { 7 | Remove-AppxProvisionedPackage -Online -PackageName $App.PackageName 8 | } -------------------------------------------------------------------------------- /SmartMirror/modules/default/newsfeed/README.md: -------------------------------------------------------------------------------- 1 | # Module: News Feed 2 | 3 | The `newsfeed` module is one of the default modules of the MagicMirror². 4 | This module displays news headlines based on an RSS feed. Scrolling through news headlines happens time-based (`updateInterval`), but can also be controlled by sending news feed specific notifications to the module. 5 | 6 | For configuration options, please check the [MagicMirror² documentation](https://docs.magicmirror.builders/modules/newsfeed.html). 7 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/newsfeed/newsfeed.css: -------------------------------------------------------------------------------- 1 | iframe.newsfeed-fullarticle { 2 | width: 100vw; 3 | /* very large height value to allow scrolling */ 4 | height: 3000px; 5 | top: 0; 6 | left: 0; 7 | border: none; 8 | z-index: 1; 9 | } 10 | 11 | .region.bottom.bar.newsfeed-fullarticle { 12 | bottom: inherit; 13 | top: -90px; 14 | } 15 | 16 | .newsfeed-list { 17 | list-style: none; 18 | } 19 | 20 | .newsfeed-list li { 21 | text-align: justify; 22 | margin-bottom: 0.5em; 23 | } 24 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/calendar/calendar.css: -------------------------------------------------------------------------------- 1 | .calendar .symbol { 2 | display: flex; 3 | flex-direction: row; 4 | justify-content: flex-end; 5 | padding-left: 0; 6 | padding-right: 10px; 7 | font-size: var(--font-size-small); 8 | } 9 | 10 | .calendar .symbol span { 11 | padding-top: 4px; 12 | } 13 | 14 | .calendar .title { 15 | padding-left: 0; 16 | padding-right: 0; 17 | } 18 | 19 | .calendar .time { 20 | padding-left: 30px; 21 | text-align: right; 22 | vertical-align: top; 23 | } 24 | -------------------------------------------------------------------------------- /Windows 10/CreateTestDirs.ps1: -------------------------------------------------------------------------------- 1 | # Create empty directory structure 2 | 3 | $path = "d:\lab\emptydirectories" 4 | $nrOfFolderLvl1 = 10; 5 | $nrOfFolderLvl2 = 5; 6 | $nrOfFolderLvl3 = 3 7 | 8 | md $path; 9 | 10 | 1..5 | % { 11 | 12 | $lvl1 = $path + "\" + "Level1-folder" + $_ 13 | md $lvl1; 14 | 15 | 16 | 1..5 | % { 17 | $lvl2 = $lvl1 + "\" + "SubLevel2-folder" + $_ 18 | md $lvl2 19 | } 20 | 21 | 1..10 | % { 22 | $lvl3 = $lvl2 + "\" + "SubLevel3-folder" + $_ 23 | md $lvl3 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/package.json: -------------------------------------------------------------------------------- 1 | {"name":"@fontsource/roboto","version":"4.5.7","description":"Self-host the Roboto font in a neatly bundled NPM package.","main":"index.css","publishConfig":{"access":"public"},"keywords":["fontsource","font","font family","google fonts","Roboto","roboto"],"author":"Lotus ","license":"MIT","homepage":"https://github.com/fontsource/fontsource/tree/main/fonts/google/roboto#readme","repository":{"type":"git","url":"https://github.com/fontsource/fontsource.git","directory":"fonts/google/roboto"}} 2 | -------------------------------------------------------------------------------- /Home Assistant/themes.yaml: -------------------------------------------------------------------------------- 1 | frontend: 2 | themes: 3 | tablet: 4 | 5 | card-mod-theme: tablet 6 | 7 | card-mod-root: | 8 | ha-app-layout { 9 | background-color: rgb(246, 247, 251) 10 | } 11 | 12 | card-mod-card: | 13 | button.height-halft { 14 | background: url('/local/background.png'); 15 | background-size: cover; 16 | } 17 | 18 | homekit-button: | 19 | button.height-halft { 20 | background: url('/local/background.png'); 21 | background-size: cover; 22 | } -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "fontId": "roboto", 3 | "fontName": "Roboto", 4 | "subsets": ["cyrillic", "cyrillic-ext", "greek", "greek-ext", "latin", "latin-ext", "vietnamese"], 5 | "weights": [100, 300, 400, 500, 700, 900], 6 | "styles": ["italic", "normal"], 7 | "defSubset": "latin", 8 | "variable": false, 9 | "lastModified": "2022-05-12", 10 | "version": "v30", 11 | "category": "sans-serif", 12 | "source": "https://fonts.google.com/", 13 | "license": "https://fonts.google.com/attribution", 14 | "type": "google" 15 | } 16 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/defaultmodules.js: -------------------------------------------------------------------------------- 1 | /* MagicMirror² Default Modules List 2 | * Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name. 3 | * 4 | * By Michael Teeuw https://michaelteeuw.nl 5 | * MIT Licensed. 6 | */ 7 | const defaultModules = ["alert", "calendar", "clock", "compliments", "currentweather", "helloworld", "newsfeed", "weatherforecast", "updatenotification", "weather"]; 8 | 9 | /*************** DO NOT EDIT THE LINE BELOW ***************/ 10 | if (typeof module !== "undefined") { 11 | module.exports = defaultModules; 12 | } 13 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "fontId": "roboto-condensed", 3 | "fontName": "Roboto Condensed", 4 | "subsets": ["cyrillic", "cyrillic-ext", "greek", "greek-ext", "latin", "latin-ext", "vietnamese"], 5 | "weights": [300, 400, 700], 6 | "styles": ["italic", "normal"], 7 | "defSubset": "latin", 8 | "variable": false, 9 | "lastModified": "2022-04-20", 10 | "version": "v25", 11 | "category": "sans-serif", 12 | "source": "https://fonts.google.com/", 13 | "license": "https://fonts.google.com/attribution", 14 | "type": "google" 15 | } 16 | -------------------------------------------------------------------------------- /Connectors/O365.ps1: -------------------------------------------------------------------------------- 1 | #Set remoteSigned to run scripts for O365 2 | Set-ExecutionPolicy RemoteSigned 3 | 4 | #Get credentials en store them 5 | $credential = Get-Credential 6 | 7 | #Connect to office 365 8 | Import-Module MsOnline 9 | 10 | $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $credential -Authentication Basic -AllowRedirection 11 | Import-PSSession $Session 12 | 13 | Connect-MsolService -Credential $credential 14 | Get-MsolUser | Where-Object { $_.isLicensed -eq "TRUE" } | Export-Csv c:\users\rmens\desktop\LicensedUsers.csv -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/package.json: -------------------------------------------------------------------------------- 1 | {"name":"@fontsource/roboto-condensed","version":"4.5.8","description":"Self-host the Roboto Condensed font in a neatly bundled NPM package.","main":"index.css","publishConfig":{"access":"public"},"keywords":["fontsource","font","font family","google fonts","Roboto Condensed","roboto-condensed"],"author":"Lotus ","license":"MIT","homepage":"https://github.com/fontsource/fontsource/tree/main/fonts/google/roboto-condensed#readme","repository":{"type":"git","url":"https://github.com/fontsource/fontsource.git","directory":"fonts/google/roboto-condensed"}} 2 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/alert/templates/alert.njk: -------------------------------------------------------------------------------- 1 | {% if imageUrl or imageFA %} 2 | {% set imageHeight = imageHeight if imageHeight else "80px" %} 3 | {% if imageUrl %} 4 | 5 | {% else %} 6 | 7 | {% endif %} 8 |
9 | {% endif %} 10 | {% if title %} 11 | {{ title }} 12 | {% endif %} 13 | {% if message %} 14 | {% if title %} 15 |
16 | {% endif %} 17 | {{ message }} 18 | {% endif %} 19 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto/unicode.json: -------------------------------------------------------------------------------- 1 | { 2 | "cyrillic-ext": "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F", 3 | "cyrillic": "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116", 4 | "greek-ext": "U+1F00-1FFF", 5 | "greek": "U+0370-03FF", 6 | "vietnamese": "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB", 7 | "latin-ext": "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF", 8 | "latin": "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD" 9 | } 10 | -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-card-mod/rollup.config.js: -------------------------------------------------------------------------------- 1 | import nodeResolve from "@rollup/plugin-node-resolve"; 2 | import json from "@rollup/plugin-json"; 3 | import typescript from "rollup-plugin-typescript2"; 4 | import { terser } from "rollup-plugin-terser"; 5 | import babel from "@rollup/plugin-babel"; 6 | 7 | const dev = process.env.ROLLUP_WATCH; 8 | 9 | export default { 10 | input: "src/main.ts", 11 | output: { 12 | file: "card-mod.js", 13 | format: "es", 14 | }, 15 | plugins: [ 16 | nodeResolve(), 17 | json(), 18 | typescript(), 19 | babel({ 20 | exclude: "node_modules/**", 21 | }), 22 | !dev && terser({ format: { comments: false } }), 23 | ], 24 | }; 25 | -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/@fontsource/roboto-condensed/unicode.json: -------------------------------------------------------------------------------- 1 | { 2 | "cyrillic-ext": "U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F", 3 | "cyrillic": "U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116", 4 | "greek-ext": "U+1F00-1FFF", 5 | "greek": "U+0370-03FF", 6 | "vietnamese": "U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB", 7 | "latin-ext": "U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF", 8 | "latin": "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD" 9 | } 10 | -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-state-switch/rollup.config.js: -------------------------------------------------------------------------------- 1 | import nodeResolve from "@rollup/plugin-node-resolve"; 2 | import json from "@rollup/plugin-json"; 3 | import typescript from "rollup-plugin-typescript2"; 4 | import { terser } from "rollup-plugin-terser"; 5 | import babel from "@rollup/plugin-babel"; 6 | 7 | const dev = process.env.ROLLUP_WATCH; 8 | 9 | export default { 10 | input: "src/main.ts", 11 | output: { 12 | file: "state-switch.js", 13 | format: "es", 14 | }, 15 | plugins: [ 16 | nodeResolve(), 17 | json(), 18 | typescript(), 19 | babel({ 20 | exclude: "node_modules/**", 21 | }), 22 | !dev && terser({ format: { comments: false } }), 23 | ], 24 | }; 25 | -------------------------------------------------------------------------------- /SharePoint/TermStoreApi.ps1: -------------------------------------------------------------------------------- 1 | 2 | # Optional Import-Module Microsoft.Graph.Sites 3 | Connect-MgGraph -Scopes "Sites.Read.All, Sites.ReadWrite.All, TermStore.ReadWrite.All" 4 | 5 | $siteId = "thunnissenonline.sharepoint.com" 6 | 7 | # Get root term store 8 | Get-MgSiteTermStore -siteId "thunnissenonline.sharepoint.com" 9 | 10 | # Get term store groups 11 | Get-MgSiteTermStoreGroup -SiteId $siteId 12 | 13 | $groupId = 14 | # Get the term store set 15 | Get-MgSiteTermStoreGroupSet -SiteId $siteId -GroupId $groupId 16 | 17 | $params = @{ 18 | Labels = @( 19 | @{ 20 | LanguageTag = "en-US" 21 | Name = "Car" 22 | IsDefault = $true 23 | } 24 | ) 25 | } 26 | 27 | New-MgSiteTermStoreSetChild -SiteId $siteId -SetId $setId -BodyParameter $params -------------------------------------------------------------------------------- /SmartMirror/fonts/node_modules/.package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "magicmirror-fonts", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": { 6 | "node_modules/@fontsource/roboto": { 7 | "version": "4.5.7", 8 | "resolved": "https://registry.npmjs.org/@fontsource/roboto/-/roboto-4.5.7.tgz", 9 | "integrity": "sha512-m57UMER23Mk6Drg9OjtHW1Y+0KPGyZfE5XJoPTOsLARLar6013kJj4X2HICt+iFLJqIgTahA/QAvSn9lwF1EEw==" 10 | }, 11 | "node_modules/@fontsource/roboto-condensed": { 12 | "version": "4.5.8", 13 | "resolved": "https://registry.npmjs.org/@fontsource/roboto-condensed/-/roboto-condensed-4.5.8.tgz", 14 | "integrity": "sha512-HCuf1rVSOsXnl/KgHNRLCr8XS/Dunzn10BjhliJiEZ5qPynXCWH4RRBFupIODHamhj2Uyp/iZkSQp574luKp6A==" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /SmartMirror/modules/default/updatenotification/updatenotification.njk: -------------------------------------------------------------------------------- 1 | {% if not suspended %} 2 | {% for name, status in moduleList %} 3 |
4 | 5 | 6 | {% set mainTextLabel = "UPDATE_NOTIFICATION" if name === "default" else "UPDATE_NOTIFICATION_MODULE" %} 7 | {{ mainTextLabel | translate({MODULE_NAME: name}) }} 8 | 9 |
10 |
11 | {% set subTextLabel = "UPDATE_INFO_SINGLE" if status.behind === 1 else "UPDATE_INFO_MULTIPLE" %} 12 | {{ subTextLabel | translate({COMMIT_COUNT: status.behind, BRANCH_NAME: status.current}) | diffLink(status) | safe }} 13 |
14 | {% endfor %} 15 | {% endif %} 16 | -------------------------------------------------------------------------------- /Home Assistant/www/community/lovelace-layout-card/rollup.config.js: -------------------------------------------------------------------------------- 1 | import nodeResolve from "@rollup/plugin-node-resolve"; 2 | import json from "@rollup/plugin-json"; 3 | import commonjs from "@rollup/plugin-commonjs"; 4 | import typescript from "rollup-plugin-typescript2"; 5 | import { terser } from "rollup-plugin-terser"; 6 | import babel from "@rollup/plugin-babel"; 7 | 8 | const dev = process.env.ROLLUP_WATCH; 9 | 10 | export default { 11 | input: "src/main.ts", 12 | output: { 13 | file: "layout-card.js", 14 | format: "es", 15 | }, 16 | plugins: [ 17 | nodeResolve(), 18 | commonjs(), 19 | json(), 20 | typescript(), 21 | babel({ 22 | exclude: "node_modules/**", 23 | }), 24 | !dev && terser({ format: { comments: false } }), 25 | ], 26 | }; 27 | --------------------------------------------------------------------------------