diff options
author | lassulus <lassulus@lassul.us> | 2019-04-08 17:13:47 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-08 17:13:47 +0200 |
commit | 8df36824c35e0573c966b355264816dbef63a05b (patch) | |
tree | 2e757d9146b1e22c5f3e1c8426bd2ad8fc099dfd /makefu/2configs/bureautomation/automation/10h_timer.nix | |
parent | 9e7729def580d83bc439985616f8c5d7162bcd48 (diff) | |
parent | 2f53271af0fda00bdc452c2bc5e569f064f562f6 (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/2configs/bureautomation/automation/10h_timer.nix')
-rw-r--r-- | makefu/2configs/bureautomation/automation/10h_timer.nix | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/makefu/2configs/bureautomation/automation/10h_timer.nix b/makefu/2configs/bureautomation/automation/10h_timer.nix index a311d468c..dd747114e 100644 --- a/makefu/2configs/bureautomation/automation/10h_timer.nix +++ b/makefu/2configs/bureautomation/automation/10h_timer.nix @@ -2,8 +2,9 @@ { alias = "start Felix 10h"; trigger = { platform = "state"; - entity_id = "binary_sensor.redbutton"; - to = "on"; + entity_id = [ "device_tracker.felix_phone" "device_tracker.felix_laptop" ]; + from = "not_home"; + to = "home"; }; condition = { condition = "and"; @@ -127,7 +128,13 @@ }; action = [ - # TODO: Pushbullet + { + service = "notify.telegrambot"; + data = { + title = "Zu lange Felix!"; + message = "Du bist schon 10 Stunden auf Arbeit, geh jetzt gefälligst nach Hause!"; + }; + } { service = "homeassistant.turn_on"; entity_id = [ |