From 7a45a6007b606362815278efa2c22cdd2287f3c4 Mon Sep 17 00:00:00 2001 From: Carlo Costanzo <2160436+CCOSTAN@users.noreply.github.com> Date: Thu, 7 Aug 2025 10:36:15 -0400 Subject: [PATCH] Remove 'Good Morning' and 'School Mode' input booleans, and delete associated automation files since the Kiddos are into College now. #EmptyNest Close #948 - Last day of School Countdown (#1526) --- config/.HA_VERSION | 2 +- .../Timed_Triggers/startup_month.yaml | 28 ------------ config/automation/good_morning.yaml | 44 ------------------- config/input_boolean/home_modes.yaml | 5 --- config/input_boolean/trigger_booleans.yaml | 5 --- 5 files changed, 1 insertion(+), 83 deletions(-) delete mode 100755 config/automation/Timed_Triggers/startup_month.yaml delete mode 100755 config/automation/good_morning.yaml diff --git a/config/.HA_VERSION b/config/.HA_VERSION index 434122a1..65bd990d 100755 --- a/config/.HA_VERSION +++ b/config/.HA_VERSION @@ -1 +1 @@ -2025.7.4 \ No newline at end of file +2025.8.0 \ No newline at end of file diff --git a/config/automation/Timed_Triggers/startup_month.yaml b/config/automation/Timed_Triggers/startup_month.yaml deleted file mode 100755 index 9042f3ae..00000000 --- a/config/automation/Timed_Triggers/startup_month.yaml +++ /dev/null @@ -1,28 +0,0 @@ -################################### -# @CCOSTAN -# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig -## Start Up Section -## Video Explanation can be found here : -## https://www.vcloudinfo.com/2019/06/how-to-use-template-conditions-in-home-assistant.html -################################### - -- alias: Check if it's summer vacation on startup. - id: 65f91ec6-b9ad-45de-9ffa-023598980019 - - trigger: - - platform: homeassistant - event: start - - platform: time_pattern - hours: '/12' - - condition: - - condition: template - value_template: > - {% set month=states("sensor.date").split('-')[1] | int %} - {%- if month == 4 or month == 5 or month == 6 or month == 7 -%} - true - {%- endif -%} - - action: - - service: input_boolean.turn_off - entity_id: input_boolean.school_mode diff --git a/config/automation/good_morning.yaml b/config/automation/good_morning.yaml deleted file mode 100755 index 25855d26..00000000 --- a/config/automation/good_morning.yaml +++ /dev/null @@ -1,44 +0,0 @@ -###################################################################### -## Weekday Morning Routines for the Wife and Kiddos. -###################################################################### - -- alias: 'Good Morning Routine' - id: 1432bac8-311b-4618-8f8f-19dd848791b6 - trigger: - - platform: state - entity_id: input_boolean.good_morning - to: 'on' - from: 'off' - - platform: state - entity_id: - - binary_sensor.sleepnumber_carlo_stacey_is_in_bed - to: 'off' - for: '00:05:00' - - condition: - - condition: state - entity_id: group.family - state: home - - condition: state - entity_id: input_boolean.school_mode - state: 'on' - - condition: time - after: '05:30:00' - before: '08:00:00' - - condition: time - weekday: - - mon - - tue - - wed - - thu - - fri - - action: - - service: light.turn_on - entity_id: - - light.s1 - - light.s4 - - service: switch.turn_on - entity_id: group.kitchen_accents - - service: input_boolean.turn_off - entity_id: input_boolean.good_morning diff --git a/config/input_boolean/home_modes.yaml b/config/input_boolean/home_modes.yaml index 45389b09..13c9a449 100755 --- a/config/input_boolean/home_modes.yaml +++ b/config/input_boolean/home_modes.yaml @@ -3,11 +3,6 @@ guest_mode: icon: mdi:account-alert initial: off -school_mode: - name: School Mode - icon: mdi:school - initial: on - alert_mode: name: Alert Mode icon: mdi:alert-octagram diff --git a/config/input_boolean/trigger_booleans.yaml b/config/input_boolean/trigger_booleans.yaml index d74a769d..2d4c6796 100755 --- a/config/input_boolean/trigger_booleans.yaml +++ b/config/input_boolean/trigger_booleans.yaml @@ -2,11 +2,6 @@ good_night: name: Good Night initial: off - -good_morning: - name: Good Morning - initial: off - meal_time: name: Meal Time initial: off