44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
- id: living_room_tv_volume_notification
|
|
alias: '[Living Room][TV] Volume notification'
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id: media_player.living_room
|
|
attribute: volume_level
|
|
condition:
|
|
- condition: state
|
|
entity_id: media_player.living_room
|
|
state: TV
|
|
attribute: source
|
|
action:
|
|
- service: notify.shield
|
|
data:
|
|
title: Volume 🔊
|
|
message: '{{ ( state_attr(''media_player.living_room'', ''volume_level'') * 100) | int }} %'
|
|
data:
|
|
duration: 1
|
|
color: black
|
|
|
|
- id: living_room_tv_suspend_pc
|
|
alias: '[Living Room][TV] When turned on suspend PC'
|
|
description: ''
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id: media_player.samsung_qe55q6fam
|
|
from: 'off'
|
|
to: 'on'
|
|
action:
|
|
- service: script.pc_sleep
|
|
|
|
- id: living_room_tv_update_harmony_mode
|
|
alias: '[Living Room][TV] Update harmony mode'
|
|
mode: single
|
|
trigger:
|
|
- platform: state
|
|
entity_id: media_player.samsung_qe55q6fam
|
|
to: 'unavailable'
|
|
for:
|
|
minutes: 5
|
|
action:
|
|
- service: script.tv_off |