1
0
Fork 0

Add only_lights

This commit is contained in:
Malte Brandy 2022-03-10 23:32:50 +01:00
parent 75bf5c1a63
commit bbefba81da

View file

@ -6,6 +6,10 @@
haLib = import ./lib.nix lib; haLib = import ./lib.nix lib;
inherit (haLib) modules util cards conditions triggers jinja actions tap_actions; inherit (haLib) modules util cards conditions triggers jinja actions tap_actions;
modes = let modes = let
only_lights = {
icon = util.mkIcon "candelabra-fire";
title = "Nur Lichter";
};
empty = { empty = {
icon = util.mkIcon "account-off"; icon = util.mkIcon "account-off";
title = "Leer"; title = "Leer";
@ -30,12 +34,12 @@
flat = { flat = {
title = "Wohnungsmodus"; title = "Wohnungsmodus";
name = "flat"; name = "flat";
options = {inherit active vacation;}; options = {inherit active vacation only_lights;};
}; };
wohnzimmer = { wohnzimmer = {
title = "Wohnzimmermodus"; title = "Wohnzimmermodus";
name = "wohnzimmer"; name = "wohnzimmer";
options = {inherit empty heat active force_active;}; options = {inherit empty heat active force_active only_lights;};
}; };
kueche = { kueche = {
title = "Küchenmodus"; title = "Küchenmodus";