├── .gitignore ├── README.md ├── group_vars └── all.yml ├── hosts ├── install.sh ├── mosquitto.yml ├── playbook.yml ├── roles ├── mosquitto │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── mosquitto.conf ├── networkupstools │ └── tasks │ │ └── main.yml ├── node │ └── tasks │ │ └── main.yml ├── openhab2_config │ ├── files │ │ └── weather-data │ │ │ ├── images │ │ │ ├── colorful │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── dark │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_black │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_colorful │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ ├── flat_white │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ └── light │ │ │ │ ├── blowing-snow.png │ │ │ │ ├── clear-night.png │ │ │ │ ├── cloudy.png │ │ │ │ ├── dust.png │ │ │ │ ├── few-showers.png │ │ │ │ ├── fog.png │ │ │ │ ├── freezing-drizzle.png │ │ │ │ ├── freezing-rain.png │ │ │ │ ├── hot.png │ │ │ │ ├── light-snow.png │ │ │ │ ├── mostly-cloudy-day.png │ │ │ │ ├── mostly-cloudy-night.png │ │ │ │ ├── partly-cloudy-day.png │ │ │ │ ├── partly-cloudy-night.png │ │ │ │ ├── rain-and-sleet.png │ │ │ │ ├── rain-and-snow.png │ │ │ │ ├── rain.png │ │ │ │ ├── scattered-showers.png │ │ │ │ ├── scattered-thunder.png │ │ │ │ ├── scattered-thundershowers.png │ │ │ │ ├── sleet.png │ │ │ │ ├── snow-and-sleet.png │ │ │ │ ├── snow-flurries.png │ │ │ │ ├── snow-showers.png │ │ │ │ ├── snow.png │ │ │ │ ├── storm.png │ │ │ │ ├── sunny.png │ │ │ │ ├── thunder.png │ │ │ │ ├── thundershower.png │ │ │ │ ├── unknown.png │ │ │ │ └── wind.png │ │ │ └── layouts │ │ │ ├── example.css │ │ │ ├── example.html │ │ │ ├── example.js │ │ │ ├── moment.js │ │ │ ├── weather.css │ │ │ ├── weather.html │ │ │ ├── weather.js │ │ │ ├── weather_large.css │ │ │ ├── weather_large.html │ │ │ ├── weather_large.js │ │ │ ├── weatherpanel.css │ │ │ ├── weatherpanel.html │ │ │ └── weatherpanel.js │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── configurations │ │ ├── items │ │ │ ├── alarm.items │ │ │ ├── enocean.items │ │ │ ├── floorHeating.items │ │ │ ├── homekit.items │ │ │ ├── huset.items │ │ │ ├── networkupstools.items │ │ │ ├── power.items │ │ │ ├── speedtest.items │ │ │ ├── systeminfo.items │ │ │ ├── tradfri.items │ │ │ └── weather.items │ │ ├── persistence │ │ │ ├── influxdb.persist │ │ │ └── rrd4j.persist │ │ ├── rules │ │ │ ├── alarm.rules │ │ │ ├── garage.rules │ │ │ ├── heating.rules │ │ │ ├── homekit.rules │ │ │ ├── household-devices.rules │ │ │ ├── lights.rules │ │ │ ├── modes.rules │ │ │ ├── power.rules │ │ │ ├── proximity.rules │ │ │ ├── security.rules │ │ │ ├── speedtest.rules │ │ │ ├── status.rules │ │ │ └── weather.rules │ │ ├── scripts │ │ │ ├── .dummy │ │ │ ├── alarm-api.js │ │ │ ├── alarm-climate.js │ │ │ ├── alarm.js │ │ │ ├── pushMessages.script │ │ │ └── restartHomeKitBundle.sh │ │ ├── services │ │ │ ├── addons.cfg │ │ │ ├── denon.cfg │ │ │ ├── homekit.cfg │ │ │ ├── http.cfg │ │ │ ├── influxdb.cfg │ │ │ ├── mqtt.cfg │ │ │ ├── networkupstools.cfg │ │ │ ├── openhabcloud.cfg │ │ │ ├── rr4dj.cfg │ │ │ ├── runtime.cfg │ │ │ ├── samsungac.cfg │ │ │ └── weather.cfg │ │ ├── sitemaps │ │ │ └── default.sitemap │ │ ├── things │ │ │ ├── astro.things │ │ │ ├── enocean.things │ │ │ ├── hue.things │ │ │ ├── network.things │ │ │ ├── rfxcom.things │ │ │ ├── samsungtv.things │ │ │ ├── systeminfo.things │ │ │ └── tradfri.things │ │ └── transform │ │ │ ├── alarm.map │ │ │ ├── en.map │ │ │ ├── floor.map │ │ │ ├── floorHeating.map │ │ │ ├── getValValue.js │ │ │ ├── household-device.map │ │ │ ├── motion.map │ │ │ ├── no.map │ │ │ └── toUpperCase.js │ │ └── openhab2 ├── openhab2_start │ └── tasks │ │ └── main.yml ├── openhab2_stop │ └── tasks │ │ └── main.yml ├── os_config │ └── tasks │ │ └── main.yml └── speedtest │ └── tasks │ └── main.yml ├── updateOpenhab.yml └── vault.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/README.md -------------------------------------------------------------------------------- /group_vars/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/group_vars/all.yml -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- 1 | [webservers] 2 | 192.168.1.99 3 | #bossext:999 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/install.sh -------------------------------------------------------------------------------- /mosquitto.yml: -------------------------------------------------------------------------------- 1 | - hosts: webservers 2 | roles: 3 | - mosquitto 4 | -------------------------------------------------------------------------------- /playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/playbook.yml -------------------------------------------------------------------------------- /roles/mosquitto/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/mosquitto/tasks/main.yml -------------------------------------------------------------------------------- /roles/mosquitto/templates/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/mosquitto/templates/mosquitto.conf -------------------------------------------------------------------------------- /roles/networkupstools/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/networkupstools/tasks/main.yml -------------------------------------------------------------------------------- /roles/node/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/node/tasks/main.yml -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/colorful/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/colorful/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/dark/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/dark/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_black/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_black/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_colorful/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_colorful/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/flat_white/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/flat_white/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/blowing-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/blowing-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/clear-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/cloudy.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/dust.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/few-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/few-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/fog.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/freezing-drizzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/freezing-drizzle.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/freezing-rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/freezing-rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/hot.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/light-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/light-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/mostly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/mostly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/mostly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/mostly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/partly-cloudy-day.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/partly-cloudy-night.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/rain-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/rain-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/rain-and-snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/rain-and-snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/rain.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/scattered-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/scattered-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/scattered-thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/scattered-thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/scattered-thundershowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/scattered-thundershowers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/snow-and-sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/snow-and-sleet.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/snow-flurries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/snow-flurries.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/snow-showers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/snow-showers.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/snow.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/storm.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/sunny.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/thunder.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/thundershower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/thundershower.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/unknown.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/images/light/wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/images/light/wind.png -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/example.css -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/example.html -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/example.js -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/moment.js -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather.css -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather.html -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather.js -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather_large.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather_large.css -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather_large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather_large.html -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weather_large.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weather_large.js -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weatherpanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weatherpanel.css -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weatherpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weatherpanel.html -------------------------------------------------------------------------------- /roles/openhab2_config/files/weather-data/layouts/weatherpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/files/weather-data/layouts/weatherpanel.js -------------------------------------------------------------------------------- /roles/openhab2_config/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/tasks/main.yml -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/alarm.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/alarm.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/enocean.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/enocean.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/floorHeating.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/floorHeating.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/homekit.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/homekit.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/huset.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/huset.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/networkupstools.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/networkupstools.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/power.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/power.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/speedtest.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/speedtest.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/systeminfo.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/systeminfo.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/tradfri.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/tradfri.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/items/weather.items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/items/weather.items -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/persistence/influxdb.persist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/persistence/influxdb.persist -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/persistence/rrd4j.persist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/persistence/rrd4j.persist -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/alarm.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/alarm.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/garage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/garage.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/heating.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/heating.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/homekit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/homekit.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/household-devices.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/household-devices.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/lights.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/lights.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/modes.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/modes.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/power.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/power.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/proximity.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/proximity.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/security.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/security.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/speedtest.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/speedtest.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/status.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/status.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/rules/weather.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/rules/weather.rules -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/alarm-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/scripts/alarm-api.js -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/alarm-climate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/scripts/alarm-climate.js -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/alarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/scripts/alarm.js -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/pushMessages.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/scripts/pushMessages.script -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/scripts/restartHomeKitBundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/scripts/restartHomeKitBundle.sh -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/addons.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/addons.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/denon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/denon.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/homekit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/homekit.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/http.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/http.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/influxdb.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/influxdb.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/mqtt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/mqtt.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/networkupstools.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/networkupstools.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/openhabcloud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/openhabcloud.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/rr4dj.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/rr4dj.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/runtime.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/samsungac.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/samsungac.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/services/weather.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/services/weather.cfg -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/sitemaps/default.sitemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/sitemaps/default.sitemap -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/astro.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/astro.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/enocean.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/enocean.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/hue.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/hue.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/network.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/network.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/rfxcom.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/rfxcom.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/samsungtv.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/samsungtv.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/systeminfo.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/systeminfo.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/things/tradfri.things: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/things/tradfri.things -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/alarm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/alarm.map -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/en.map: -------------------------------------------------------------------------------- 1 | CLOSED=closed 2 | OPEN=open 3 | undefined=unknown 4 | -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/floor.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/floor.map -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/floorHeating.map: -------------------------------------------------------------------------------- 1 | -=Ukjent 2 | 0=Av 3 | 1=Standby 4 | 2=Varmer 5 | -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/getValValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/getValValue.js -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/household-device.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/household-device.map -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/motion.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/motion.map -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/no.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_config/templates/configurations/transform/no.map -------------------------------------------------------------------------------- /roles/openhab2_config/templates/configurations/transform/toUpperCase.js: -------------------------------------------------------------------------------- 1 | (function(i) { 2 | return i.toUpperCase(); 3 | })(input) -------------------------------------------------------------------------------- /roles/openhab2_config/templates/openhab2: -------------------------------------------------------------------------------- 1 | EXTRA_JAVA_OPTS="-Dgnu.io.rxtx.SerialPorts=/dev/{{rfxcom_tty}}" 2 | -------------------------------------------------------------------------------- /roles/openhab2_start/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_start/tasks/main.yml -------------------------------------------------------------------------------- /roles/openhab2_stop/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/openhab2_stop/tasks/main.yml -------------------------------------------------------------------------------- /roles/os_config/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/os_config/tasks/main.yml -------------------------------------------------------------------------------- /roles/speedtest/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/roles/speedtest/tasks/main.yml -------------------------------------------------------------------------------- /updateOpenhab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/updateOpenhab.yml -------------------------------------------------------------------------------- /vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steintore/my-openhab2-config/HEAD/vault.yml --------------------------------------------------------------------------------