25 lines
865 B
YAML
25 lines
865 B
YAML
- sensor:
|
|
- name: 'Basement TV Current App'
|
|
unique_id: 838c2320-24b6-4555-959e-0546580ae8b2
|
|
state: >-
|
|
{% if is_state('media_player.basement_tv','off') %}
|
|
Off
|
|
{% else %}
|
|
{{ state_attr('media_player.basement_tv','app_name') }}
|
|
{% endif %}
|
|
- name: 'Living Room TV Current App'
|
|
unique_id: b03de99d-b7fa-4f4c-8cdf-758c906dffe4
|
|
state: >-
|
|
{% if is_state('media_player.living_room_tv','off') %}
|
|
Off
|
|
{% else %}
|
|
{{ state_attr('media_player.living_room_tv','app_name') }}
|
|
{% endif %}
|
|
- name: 'Master Bedroom TV Current App'
|
|
unique_id: 4bf4bef3-fc81-4259-a75c-6693ceba0926
|
|
state: >-
|
|
{% if is_state('media_player.master_bedroom_chromecast','off') %}
|
|
Off
|
|
{% else %}
|
|
{{ state_attr('media_player.master_bedroom_chromecast','app_name') }}
|
|
{% endif %} |