mirror of
https://github.com/GeorgeSG/sarah.git
synced 2026-06-09 23:02:59 +00:00
18 lines
617 B
YAML
18 lines
617 B
YAML
script:
|
|
music_play:
|
|
alias: Music · Play
|
|
sequence:
|
|
- service: script.sonos_join_bedroom
|
|
- service: media_player.volume_set
|
|
entity_id: group.all_sonos
|
|
data_template:
|
|
volume_level: "{{ volume_level | default(0.2) }}"
|
|
- service: media_player.shuffle_set
|
|
entity_id: media_player.master_bedroom
|
|
data_template:
|
|
shuffle: "{{ shuffle | default(true) }}"
|
|
- service: media_player.select_source
|
|
entity_id: media_player.master_bedroom
|
|
data_template:
|
|
source: "{{ playlist | default('Wake Up and Smell the Coffee') }}"
|