1
0
ansible-home-assistant/automations/goto-sleep.yaml
2021-05-24 20:26:03 +02:00

34 lines
662 B
YAML

- id: goto_sleep
alias: Go to sleep
description: ''
trigger:
- platform: time
at: '23:25'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- sun
- condition: state
entity_id: binary_sensor.desktop
state: 'on'
action:
- service: light.turn_on
data:
flash: long
brightness: 200
rgb_color:
- 255
- 0
- 0
entity_id: light.computer_lights
- delay: '0:05:00'
- condition: state
entity_id: binary_sensor.desktop
state: 'on'
- service: shell_command.pc_poweroff
mode: single