home-automation/automations/desk_human_kiosk.yaml

16 lines
364 B
YAML
Raw Normal View History

# Desk kiosk on/off
- id: desk_kiosk
alias: Desk Kiosk
trigger:
- platform: state
entity_id: !secret tracked_device_1
action:
- service: shell_command.lightdm
data_template:
action: >-
{% if trigger.to_state.state == 'home' %}
start
{% else %}
stop
{% endif %}