├── .gitignore ├── .vscode └── settings.json ├── changelog.md ├── custom_icons ├── avatar.svg ├── balcony-1.svg ├── balcony-2.svg ├── balcony.svg ├── bar-counter.svg ├── bathroom.svg ├── bedroom.svg ├── boy-1.svg ├── boy.svg ├── businesswoman.svg ├── closet-1.svg ├── closet.svg ├── corridor.svg ├── cutlery.svg ├── dinner.svg ├── dressing-room.svg ├── dumbbell.svg ├── female.svg ├── games-player-upgrading-level-symbol.svg ├── hallway.svg ├── handle.svg ├── kitchen.svg ├── laundry.svg ├── livingroom.svg ├── locker.svg ├── lotus.svg ├── man-in-suit-and-tie.svg ├── man-lifting-weight.svg ├── open-door-entrance.svg ├── room.svg ├── saw-tool.svg ├── shower.svg ├── spa.svg ├── stairs-1.svg ├── stairs-2.svg ├── stairs.svg ├── toilet-1.svg ├── toilet-paper-1.svg ├── toilet-paper.svg ├── toilet.svg ├── underarm.svg ├── usage.svg ├── walking-man.svg ├── washing-machine-1.svg ├── washing-machine.svg ├── water-closet.svg ├── weightlifting.svg ├── woman.svg ├── wood-work.svg ├── working-with-laptop.svg └── wrench.svg ├── hardware.md ├── includes └── lovelace │ ├── aleborg_frontend │ ├── common │ │ ├── aleborg-material.yaml │ │ ├── kiosk_mode.yaml │ │ ├── readme.md │ │ ├── swipe_nav.yaml │ │ └── views.yaml │ ├── settings.yaml │ ├── tablet.yaml │ ├── templates │ │ ├── partials │ │ │ ├── calendar │ │ │ │ ├── calendar.yaml │ │ │ │ └── calendar_card.yaml │ │ │ ├── home │ │ │ │ ├── cameras.yaml │ │ │ │ ├── charts.yaml │ │ │ │ ├── entities.yaml │ │ │ │ ├── sensors.yaml │ │ │ │ └── weather.yaml │ │ │ ├── lights │ │ │ │ ├── dimmer │ │ │ │ │ ├── auto-entities │ │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ │ └── include.yaml │ │ │ │ │ ├── light_dimmer.yaml │ │ │ │ │ └── styles │ │ │ │ │ │ ├── card_layout.yaml │ │ │ │ │ │ ├── card_mod.yaml │ │ │ │ │ │ ├── label_state.yaml │ │ │ │ │ │ ├── label_styles.yaml │ │ │ │ │ │ ├── layout.yaml │ │ │ │ │ │ ├── name_card_mod.yaml │ │ │ │ │ │ ├── name_state.yaml │ │ │ │ │ │ ├── name_styles.yaml │ │ │ │ │ │ ├── slider_card_mod.yaml │ │ │ │ │ │ └── slider_styles.yaml │ │ │ │ ├── lights_card.yaml │ │ │ │ ├── list │ │ │ │ │ ├── auto-entities │ │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ │ └── include.yaml │ │ │ │ │ ├── light_list_card.yaml │ │ │ │ │ ├── light_list_dimmer.yaml │ │ │ │ │ └── light_list_switch.yaml │ │ │ │ ├── styles │ │ │ │ │ └── card_layout.yaml │ │ │ │ └── switch │ │ │ │ │ ├── auto-entities │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ └── include.yaml │ │ │ │ │ ├── light_switch.yaml │ │ │ │ │ └── styles │ │ │ │ │ ├── card_layout.yaml │ │ │ │ │ ├── card_mod.yaml │ │ │ │ │ ├── state.yaml │ │ │ │ │ └── styles.yaml │ │ │ ├── media │ │ │ │ ├── announce │ │ │ │ │ └── tts_announce.yaml │ │ │ │ ├── auto-entities │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ └── include.yaml │ │ │ │ ├── cast │ │ │ │ │ ├── media_cast_speaker.yaml │ │ │ │ │ └── media_cast_tv.yaml │ │ │ │ ├── media_card.yaml │ │ │ │ ├── media_player │ │ │ │ │ ├── auto-entities │ │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ │ └── include.yaml │ │ │ │ │ ├── media_browse.yaml │ │ │ │ │ ├── media_player.yaml │ │ │ │ │ ├── media_player_card.yaml │ │ │ │ │ ├── media_player_card_variables.yaml │ │ │ │ │ └── styles │ │ │ │ │ │ ├── browse_style.yaml │ │ │ │ │ │ └── card_mod.yaml │ │ │ │ ├── receiver │ │ │ │ │ └── media_receiver.yaml │ │ │ │ ├── sonos │ │ │ │ │ └── media_sonos.yaml │ │ │ │ └── styles │ │ │ │ │ └── card_mod.yaml │ │ │ ├── page.yaml │ │ │ ├── page_header │ │ │ │ ├── auto-entities │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ └── include.yaml │ │ │ │ ├── header.yaml │ │ │ │ ├── stats_humidity.yaml │ │ │ │ ├── stats_illuminance.yaml │ │ │ │ ├── stats_motion.yaml │ │ │ │ ├── stats_presence.yaml │ │ │ │ ├── stats_temp.yaml │ │ │ │ └── styles │ │ │ │ │ ├── layout.yaml │ │ │ │ │ ├── picture_style.yaml │ │ │ │ │ ├── stats_card_mod.yaml │ │ │ │ │ ├── stats_color_illuminance.yaml │ │ │ │ │ ├── stats_color_temp.yaml │ │ │ │ │ ├── stats_icon_state.yaml │ │ │ │ │ ├── stats_icon_styles.yaml │ │ │ │ │ ├── stats_text_styles.yaml │ │ │ │ │ └── title_card_mod.yaml │ │ │ ├── power_usage │ │ │ │ ├── auto-entities │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ ├── include_current.yaml │ │ │ │ │ ├── include_daily.yaml │ │ │ │ │ ├── include_monthly.yaml │ │ │ │ │ ├── include_weekly.yaml │ │ │ │ │ └── include_yearly.yaml │ │ │ │ ├── power_usage_card.yaml │ │ │ │ ├── power_usage_stats_card.yaml │ │ │ │ └── styles │ │ │ │ │ ├── layout.yaml │ │ │ │ │ ├── power_usage_stats_styles.yaml │ │ │ │ │ ├── segments_0_10.yaml │ │ │ │ │ ├── segments_0_100.yaml │ │ │ │ │ ├── segments_0_20.yaml │ │ │ │ │ ├── segments_0_30.yaml │ │ │ │ │ ├── segments_0_40.yaml │ │ │ │ │ ├── segments_0_50.yaml │ │ │ │ │ ├── segments_0_60.yaml │ │ │ │ │ ├── segments_0_70.yaml │ │ │ │ │ ├── segments_0_80.yaml │ │ │ │ │ └── segments_0_90.yaml │ │ │ ├── scenes │ │ │ │ ├── auto-entities │ │ │ │ │ ├── exclude.yaml │ │ │ │ │ └── include.yaml │ │ │ │ ├── scenes.yaml │ │ │ │ ├── scenes_card.yaml │ │ │ │ └── styles │ │ │ │ │ ├── scenes_card_card_mod.yaml │ │ │ │ │ └── scenes_card_mod.yaml │ │ │ ├── styles │ │ │ │ ├── ha-card-alt-background.yaml │ │ │ │ ├── ha-card-alt2-background.yaml │ │ │ │ ├── ha-card-no-background.yaml │ │ │ │ ├── page_layout.yaml │ │ │ │ └── text_large.yaml │ │ │ └── tabs │ │ │ │ ├── styles │ │ │ │ ├── calendar_styles.yaml │ │ │ │ ├── card_mod.yaml │ │ │ │ ├── lights_styles.yaml │ │ │ │ ├── multimedia_styles.yaml │ │ │ │ ├── power_usage_styles.yaml │ │ │ │ └── styles.yaml │ │ │ │ ├── tabbed.yaml │ │ │ │ └── tabs_card.yaml │ │ ├── readme.md │ │ └── sidebar │ │ │ ├── menu-item.yaml │ │ │ ├── menu.yaml │ │ │ └── styles │ │ │ ├── item_styles.yaml │ │ │ ├── styles.yaml │ │ │ └── title_card_mod.yaml │ └── views │ │ ├── home.yaml │ │ ├── lights.yaml │ │ ├── page.yaml │ │ ├── readme.md │ │ └── zigbeemap.yaml │ └── screenshots │ ├── all_lights.png │ ├── calendar.png │ ├── home.png │ ├── lights.png │ ├── media.png │ ├── parts.png │ ├── power_usage.png │ └── zigbeemap.png ├── readme.md ├── settings.md ├── themes └── aleborg-material.yaml └── www └── images └── backgrounds ├── 1.jpg ├── 2.jpg ├── 3.png ├── 4.jpg ├── 5.jpg └── 6.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/changelog.md -------------------------------------------------------------------------------- /custom_icons/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/avatar.svg -------------------------------------------------------------------------------- /custom_icons/balcony-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/balcony-1.svg -------------------------------------------------------------------------------- /custom_icons/balcony-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/balcony-2.svg -------------------------------------------------------------------------------- /custom_icons/balcony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/balcony.svg -------------------------------------------------------------------------------- /custom_icons/bar-counter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/bar-counter.svg -------------------------------------------------------------------------------- /custom_icons/bathroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/bathroom.svg -------------------------------------------------------------------------------- /custom_icons/bedroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/bedroom.svg -------------------------------------------------------------------------------- /custom_icons/boy-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/boy-1.svg -------------------------------------------------------------------------------- /custom_icons/boy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/boy.svg -------------------------------------------------------------------------------- /custom_icons/businesswoman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/businesswoman.svg -------------------------------------------------------------------------------- /custom_icons/closet-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/closet-1.svg -------------------------------------------------------------------------------- /custom_icons/closet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/closet.svg -------------------------------------------------------------------------------- /custom_icons/corridor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/corridor.svg -------------------------------------------------------------------------------- /custom_icons/cutlery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/cutlery.svg -------------------------------------------------------------------------------- /custom_icons/dinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/dinner.svg -------------------------------------------------------------------------------- /custom_icons/dressing-room.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/dressing-room.svg -------------------------------------------------------------------------------- /custom_icons/dumbbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/dumbbell.svg -------------------------------------------------------------------------------- /custom_icons/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/female.svg -------------------------------------------------------------------------------- /custom_icons/games-player-upgrading-level-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/games-player-upgrading-level-symbol.svg -------------------------------------------------------------------------------- /custom_icons/hallway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/hallway.svg -------------------------------------------------------------------------------- /custom_icons/handle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/handle.svg -------------------------------------------------------------------------------- /custom_icons/kitchen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/kitchen.svg -------------------------------------------------------------------------------- /custom_icons/laundry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/laundry.svg -------------------------------------------------------------------------------- /custom_icons/livingroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/livingroom.svg -------------------------------------------------------------------------------- /custom_icons/locker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/locker.svg -------------------------------------------------------------------------------- /custom_icons/lotus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/lotus.svg -------------------------------------------------------------------------------- /custom_icons/man-in-suit-and-tie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/man-in-suit-and-tie.svg -------------------------------------------------------------------------------- /custom_icons/man-lifting-weight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/man-lifting-weight.svg -------------------------------------------------------------------------------- /custom_icons/open-door-entrance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/open-door-entrance.svg -------------------------------------------------------------------------------- /custom_icons/room.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/room.svg -------------------------------------------------------------------------------- /custom_icons/saw-tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/saw-tool.svg -------------------------------------------------------------------------------- /custom_icons/shower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/shower.svg -------------------------------------------------------------------------------- /custom_icons/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/spa.svg -------------------------------------------------------------------------------- /custom_icons/stairs-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/stairs-1.svg -------------------------------------------------------------------------------- /custom_icons/stairs-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/stairs-2.svg -------------------------------------------------------------------------------- /custom_icons/stairs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/stairs.svg -------------------------------------------------------------------------------- /custom_icons/toilet-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/toilet-1.svg -------------------------------------------------------------------------------- /custom_icons/toilet-paper-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/toilet-paper-1.svg -------------------------------------------------------------------------------- /custom_icons/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/toilet-paper.svg -------------------------------------------------------------------------------- /custom_icons/toilet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/toilet.svg -------------------------------------------------------------------------------- /custom_icons/underarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/underarm.svg -------------------------------------------------------------------------------- /custom_icons/usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/usage.svg -------------------------------------------------------------------------------- /custom_icons/walking-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/walking-man.svg -------------------------------------------------------------------------------- /custom_icons/washing-machine-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/washing-machine-1.svg -------------------------------------------------------------------------------- /custom_icons/washing-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/washing-machine.svg -------------------------------------------------------------------------------- /custom_icons/water-closet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/water-closet.svg -------------------------------------------------------------------------------- /custom_icons/weightlifting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/weightlifting.svg -------------------------------------------------------------------------------- /custom_icons/woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/woman.svg -------------------------------------------------------------------------------- /custom_icons/wood-work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/wood-work.svg -------------------------------------------------------------------------------- /custom_icons/working-with-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/working-with-laptop.svg -------------------------------------------------------------------------------- /custom_icons/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/custom_icons/wrench.svg -------------------------------------------------------------------------------- /hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/hardware.md -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/common/aleborg-material.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/common/aleborg-material.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/common/kiosk_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/common/kiosk_mode.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/common/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/common/readme.md -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/common/swipe_nav.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/common/swipe_nav.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/common/views.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/common/views.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/settings.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/tablet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/tablet.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/calendar/calendar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/calendar/calendar.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/calendar/calendar_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/calendar/calendar_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/home/cameras.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/home/cameras.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/home/charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/home/charts.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/home/entities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/home/entities.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/home/sensors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/home/sensors.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/home/weather.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/home/weather.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/light_dimmer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/light_dimmer.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/card_layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/card_layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/label_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/label_state.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/label_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/label_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_state.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/name_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/slider_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/slider_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/slider_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/dimmer/styles/slider_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/lights_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/lights_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/list/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/list/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/list/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/list/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_dimmer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_dimmer.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/list/light_list_switch.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/styles/card_layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/styles/card_layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/light_switch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/light_switch.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/card_layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/card_layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/state.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/lights/switch/styles/styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/announce/tts_announce.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/announce/tts_announce.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/cast/media_cast_speaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/cast/media_cast_speaker.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/cast/media_cast_tv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/cast/media_cast_tv.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_browse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_browse.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player_card_variables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/media_player_card_variables.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/styles/browse_style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/styles/browse_style.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/media_player/styles/card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/media_player/styles/card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/receiver/media_receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/receiver/media_receiver.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/sonos/media_sonos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/sonos/media_sonos.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/media/styles/card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/media/styles/card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/header.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_humidity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_humidity.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_illuminance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_illuminance.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_motion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_motion.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_presence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_presence.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_temp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/stats_temp.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/picture_style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/picture_style.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_color_illuminance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_color_illuminance.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_color_temp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_color_temp.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_icon_state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_icon_state.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_icon_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_icon_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_text_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/stats_text_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/title_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/page_header/styles/title_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_current.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_current.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_daily.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_daily.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_monthly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_monthly.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_weekly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_weekly.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_yearly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/auto-entities/include_yearly.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/power_usage_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/power_usage_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/power_usage_stats_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/power_usage_stats_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/layout.yaml: -------------------------------------------------------------------------------- 1 | grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) 2 | -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/power_usage_stats_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/power_usage_stats_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_10.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_100.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_20.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_30.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_40.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_40.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_50.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_50.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_60.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_60.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_70.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_70.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_80.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_80.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_90.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/power_usage/styles/segments_0_90.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/auto-entities/exclude.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/auto-entities/exclude.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/auto-entities/include.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/auto-entities/include.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/scenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/scenes.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/scenes_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/scenes_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/styles/scenes_card_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/styles/scenes_card_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/scenes/styles/scenes_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/scenes/styles/scenes_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-alt-background.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-alt-background.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-alt2-background.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-alt2-background.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-no-background.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/styles/ha-card-no-background.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/styles/page_layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/styles/page_layout.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/styles/text_large.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/calendar_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/calendar_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/lights_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/lights_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/multimedia_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/multimedia_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/power_usage_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/power_usage_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/styles/styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/tabbed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/tabbed.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/partials/tabs/tabs_card.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/partials/tabs/tabs_card.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/readme.md -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/sidebar/menu-item.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/sidebar/menu-item.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/sidebar/menu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/sidebar/menu.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/sidebar/styles/item_styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/sidebar/styles/item_styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/sidebar/styles/styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/sidebar/styles/styles.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/templates/sidebar/styles/title_card_mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/templates/sidebar/styles/title_card_mod.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/views/home.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/views/home.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/views/lights.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/views/lights.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/views/page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/views/page.yaml -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/views/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/views/readme.md -------------------------------------------------------------------------------- /includes/lovelace/aleborg_frontend/views/zigbeemap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/aleborg_frontend/views/zigbeemap.yaml -------------------------------------------------------------------------------- /includes/lovelace/screenshots/all_lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/all_lights.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/calendar.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/home.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/lights.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/media.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/parts.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/power_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/power_usage.png -------------------------------------------------------------------------------- /includes/lovelace/screenshots/zigbeemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/includes/lovelace/screenshots/zigbeemap.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/readme.md -------------------------------------------------------------------------------- /settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/settings.md -------------------------------------------------------------------------------- /themes/aleborg-material.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/themes/aleborg-material.yaml -------------------------------------------------------------------------------- /www/images/backgrounds/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/1.jpg -------------------------------------------------------------------------------- /www/images/backgrounds/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/2.jpg -------------------------------------------------------------------------------- /www/images/backgrounds/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/3.png -------------------------------------------------------------------------------- /www/images/backgrounds/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/4.jpg -------------------------------------------------------------------------------- /www/images/backgrounds/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/5.jpg -------------------------------------------------------------------------------- /www/images/backgrounds/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aleborg/homeassistant-aleborg-frontend/HEAD/www/images/backgrounds/6.jpg --------------------------------------------------------------------------------