Gave aliases to scripts that didn't have them
This commit is contained in:
@ -173,6 +173,7 @@ automation:
|
||||
|
||||
script:
|
||||
activate_alexa_actionable_notification:
|
||||
alias: 'Activate Alexa Actionable Notification'
|
||||
description: 'Activates an actionable notification on a specific echo device'
|
||||
fields:
|
||||
text:
|
||||
|
@ -216,12 +216,14 @@ script:
|
||||
entity_id: input_boolean.good_morning_report
|
||||
|
||||
morning_briefing:
|
||||
alias: 'Morning Briefing'
|
||||
sequence:
|
||||
- service: button.press
|
||||
target:
|
||||
entity_id: button.good_morning
|
||||
|
||||
kallen_nightly_briefing:
|
||||
alias: 'Kallen Nightly Briefing'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
@ -234,6 +236,7 @@ script:
|
||||
message: "I just gave Kallen's nightly briefing."
|
||||
|
||||
kallen_morning_briefing:
|
||||
alias: 'Kallen Morning Briefing'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
@ -253,6 +256,7 @@ script:
|
||||
message: "I just gave Kallen's morning briefing"
|
||||
|
||||
kallen_school_status:
|
||||
alias: 'Kallen School Status'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
@ -261,6 +265,7 @@ script:
|
||||
voice: Joanna
|
||||
|
||||
daily_briefing:
|
||||
alias: 'Daily Briefing'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data_template:
|
||||
@ -268,6 +273,7 @@ script:
|
||||
message: !include ../templates/speech/daily_briefing.yaml
|
||||
|
||||
nightly_briefing:
|
||||
alias: 'Nightly Briefing'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data_template:
|
||||
@ -275,6 +281,7 @@ script:
|
||||
message: !include ../templates/speech/nightly_briefing.yaml
|
||||
|
||||
morning_report:
|
||||
alias: 'Morning Report'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data_template:
|
||||
@ -282,6 +289,7 @@ script:
|
||||
message: !include ../templates/speech/morning_briefing.yaml
|
||||
|
||||
dinner_is_ready:
|
||||
alias: 'Dinner Is Ready'
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data_template:
|
||||
@ -289,6 +297,7 @@ script:
|
||||
call_dinner_is_ready: 1
|
||||
|
||||
we_are_leaving:
|
||||
alias: 'We Are Leaving'
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data_template:
|
||||
@ -296,6 +305,7 @@ script:
|
||||
call_we_are_leaving: 1
|
||||
|
||||
welcome_home:
|
||||
alias: 'Welcome Home'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.welcome_home
|
||||
|
@ -46,6 +46,7 @@ script:
|
||||
# media: /media/local_audio.mp3
|
||||
#
|
||||
local_audio:
|
||||
alias: 'Local Audio'
|
||||
sequence:
|
||||
# Ensure that audible notifications are allowed. Comment out if not needed.
|
||||
- condition: state
|
||||
@ -93,6 +94,7 @@ script:
|
||||
# media: https://www.youtube.com/watch?v=pVeX4C9B1Lk
|
||||
#
|
||||
youtube_audio:
|
||||
alias: 'Youtube Audio'
|
||||
sequence:
|
||||
# Ensure that audible notifications are allowed. Comment out if not needed.
|
||||
- condition: state
|
||||
|
@ -929,6 +929,7 @@ script:
|
||||
# entity_id: sensor.flood_watch
|
||||
|
||||
weather_briefing:
|
||||
alias: 'Weather Briefing'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data_template:
|
||||
|
@ -106,6 +106,7 @@ automation:
|
||||
|
||||
script:
|
||||
tina_work_today:
|
||||
alias: 'Tina Work Today'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
target:
|
||||
@ -123,11 +124,13 @@ script:
|
||||
entity_id: input_boolean.work_today
|
||||
|
||||
tina_work_reset:
|
||||
alias: 'Tina Work Reset'
|
||||
sequence:
|
||||
- service: input_boolean.turn_off
|
||||
entity_id: input_boolean.work_today
|
||||
|
||||
tony_stream_today:
|
||||
alias: 'Tony Stream Today'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
target:
|
||||
@ -139,6 +142,7 @@ script:
|
||||
entity_id: input_boolean.tony_streaming_today
|
||||
|
||||
tony_stream_reset:
|
||||
alias: 'Tony Stream Reset'
|
||||
sequence:
|
||||
- service: input_boolean.turn_off
|
||||
entity_id: input_boolean.tony_streaming_today
|
@ -23,6 +23,7 @@ input_select:
|
||||
|
||||
script:
|
||||
alexa_interjection:
|
||||
alias: 'Alexa Interjection'
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data:
|
||||
@ -30,6 +31,7 @@ script:
|
||||
call_confirmation: 1
|
||||
|
||||
google_interjection:
|
||||
alias: 'Google Interjection'
|
||||
sequence:
|
||||
- service: script.status_annc
|
||||
data:
|
||||
|
@ -212,6 +212,7 @@ script:
|
||||
# Txt Notify
|
||||
###############################################################################
|
||||
text_notify:
|
||||
alias: 'Text Notify'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.text_notifications
|
||||
@ -301,6 +302,7 @@ script:
|
||||
message: '{{ message }}'
|
||||
|
||||
tv_notify:
|
||||
alias: 'TV Notify'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.tv_notifications
|
||||
@ -343,6 +345,7 @@ script:
|
||||
data: '{{ data if data is defined else "{}" }}'
|
||||
|
||||
text_alert:
|
||||
alias: 'Text Alert'
|
||||
sequence:
|
||||
- service: >
|
||||
{% if who == 'tony' %}
|
||||
@ -373,6 +376,7 @@ script:
|
||||
# entity_id: '{{ camera_entity }}'
|
||||
|
||||
text_alert_image:
|
||||
alias: 'Text Alert Image'
|
||||
sequence:
|
||||
- service: >
|
||||
{% if who == 'tony' %}
|
||||
@ -403,6 +407,7 @@ script:
|
||||
# entity_id: '{{ camera_entity }}'
|
||||
|
||||
text_urgent_alert:
|
||||
alias: 'Text Urgent Alert'
|
||||
sequence:
|
||||
- service: >
|
||||
{% if who == 'tony' %}
|
||||
@ -436,6 +441,7 @@ script:
|
||||
# => iOS
|
||||
###############################################################################
|
||||
alert_notify:
|
||||
alias: 'Alert Notify'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.vacation_mode
|
||||
@ -447,6 +453,7 @@ script:
|
||||
{{ message }}
|
||||
|
||||
jarvis_alert:
|
||||
alias: 'Jarvis Alert'
|
||||
sequence:
|
||||
- service: mqtt.publish
|
||||
data_template:
|
||||
@ -518,6 +525,7 @@ script:
|
||||
###############################################################################
|
||||
|
||||
speech_engine:
|
||||
alias: 'Speech Engine'
|
||||
variables:
|
||||
voice: "{{ states('input_select.jarvis_voice') }}"
|
||||
sequence:
|
||||
@ -639,6 +647,7 @@ script:
|
||||
#
|
||||
#
|
||||
speech_engine_simplified:
|
||||
alias: 'Speech Engine Simplified'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.audible_notifications
|
||||
@ -689,6 +698,7 @@ script:
|
||||
|
||||
# Called wheh notification needs to play on echos
|
||||
alexa_voice:
|
||||
alias: 'Alexa Voice'
|
||||
sequence:
|
||||
- service: notify.alexa_media
|
||||
data:
|
||||
@ -721,6 +731,7 @@ script:
|
||||
|
||||
# Default audible notifications. Notifcations play on the google devices.
|
||||
jarvis_voice:
|
||||
alias: 'Jarvis Voice'
|
||||
sequence:
|
||||
- service: media_player.turn_on
|
||||
data_template:
|
||||
@ -777,6 +788,7 @@ script:
|
||||
cache: true
|
||||
|
||||
nabu_voice:
|
||||
alias: 'Nabu Voice'
|
||||
sequence:
|
||||
- service: media_player.turn_on
|
||||
data_template:
|
||||
@ -855,6 +867,7 @@ script:
|
||||
# {{ states.input_number.old_volume.state }}
|
||||
|
||||
play_last_message:
|
||||
alias: 'Play Last Message'
|
||||
sequence:
|
||||
- service: script.speech_engine_simplified
|
||||
data:
|
||||
@ -866,6 +879,7 @@ script:
|
||||
msg_summary: "recall"
|
||||
|
||||
notify_mqtt:
|
||||
alias: 'Notify MQTT'
|
||||
sequence:
|
||||
- service: mqtt.publish
|
||||
data:
|
||||
@ -874,6 +888,7 @@ script:
|
||||
retain: true
|
||||
|
||||
status_annc:
|
||||
alias: 'Status Announce'
|
||||
sequence:
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
|
@ -18,6 +18,7 @@ input_boolean:
|
||||
|
||||
script:
|
||||
house_party_protocol_on:
|
||||
alias: 'House Party Protocol On'
|
||||
sequence:
|
||||
- delay: 00:00:05
|
||||
- service: script.status_annc
|
||||
@ -26,6 +27,7 @@ script:
|
||||
call_house_party_protocol_enabled: 1
|
||||
|
||||
house_party_protocol_off:
|
||||
alias: 'House Party Protocol Off'
|
||||
sequence:
|
||||
- delay: 00:00:05
|
||||
- service: script.status_annc
|
||||
|
@ -156,6 +156,7 @@ automation:
|
||||
|
||||
script:
|
||||
kallen_scheduling_morning:
|
||||
alias: 'Kallen Scheduling Morning'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.school_day_start
|
||||
@ -228,6 +229,7 @@ script:
|
||||
{% endif %}
|
||||
|
||||
kallen_scheduling_evening:
|
||||
alias: 'Kallen Scheduling Evening'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.kallen_bedtime
|
||||
@ -261,6 +263,7 @@ script:
|
||||
{% endif %}
|
||||
|
||||
house_scheduling_morning:
|
||||
alias: 'House Scheduling Morning'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.audible_notification_on
|
||||
@ -345,6 +348,7 @@ script:
|
||||
entity_id: input_boolean.cold_day
|
||||
|
||||
house_scheduling_evening:
|
||||
alias: 'House Scheduling Evening'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.nightly_report
|
||||
@ -362,6 +366,7 @@ script:
|
||||
{% endif %}
|
||||
|
||||
master_bedroom_scheduling_morning:
|
||||
alias: 'Master Bedroom Scheduling Morning'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.master_bedroom_wakeup
|
||||
@ -378,6 +383,7 @@ script:
|
||||
{% endif %}
|
||||
|
||||
master_bedroom_scheduling_evening:
|
||||
alias: 'Master Bedroom Scheduling Evening'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.master_bedroom_cooling
|
||||
@ -434,6 +440,7 @@ script:
|
||||
|
||||
# For now, this just ties her wakeup time to the master bedroom wakeup time. In the future this will have more conditions and be independent of other rooms.
|
||||
emma_bedroom_scheduling_morning:
|
||||
alias: 'Emma Bedroom Scheduling Morning'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.emma_wakeup
|
||||
@ -441,6 +448,7 @@ script:
|
||||
time: "{{ states('input_datetime.master_bedroom_wakeup') }}"
|
||||
|
||||
emma_bedroom_scheduling_evening:
|
||||
alias: 'Emma Bedroom Scheduling Evening'
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.emma_bedtime
|
||||
@ -471,6 +479,7 @@ script:
|
||||
{% endif %}
|
||||
|
||||
security_scheduling:
|
||||
alias: Security Scheduling
|
||||
sequence:
|
||||
- service: input_datetime.set_datetime
|
||||
entity_id: input_datetime.morning_alarm_disarm
|
||||
|
@ -278,6 +278,7 @@ automation:
|
||||
|
||||
script:
|
||||
kallen_school_today:
|
||||
alias: 'Kallen School Today'
|
||||
sequence:
|
||||
- if:
|
||||
- condition: state
|
||||
@ -321,6 +322,7 @@ script:
|
||||
entity_id: input_boolean.kallen_band_practice
|
||||
|
||||
kallen_school_reset:
|
||||
alias: 'Kallen School Reset'
|
||||
sequence:
|
||||
- service: input_boolean.turn_off
|
||||
entity_id:
|
||||
@ -329,6 +331,7 @@ script:
|
||||
- input_boolean.kallen_school_cancelled
|
||||
|
||||
kallen_school_reset_late:
|
||||
alias: 'Kallen School Reset Late'
|
||||
sequence:
|
||||
- service: input_boolean.turn_off
|
||||
entity_id:
|
||||
@ -337,6 +340,7 @@ script:
|
||||
- input_boolean.school_early_release
|
||||
|
||||
school_in_session:
|
||||
alias: 'School In Session'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.school_in_session
|
||||
@ -345,6 +349,7 @@ script:
|
||||
entity_id: input_boolean.school_in_session
|
||||
|
||||
school_year_over:
|
||||
alias: 'School Year Over'
|
||||
sequence:
|
||||
- condition: state
|
||||
entity_id: input_boolean.school_in_session
|
||||
|
Reference in New Issue
Block a user