diff --git a/homeassistant/components/jewish_calendar/binary_sensor.py b/homeassistant/components/jewish_calendar/binary_sensor.py index c28dee88cf5..4ce0dad6c01 100644 --- a/homeassistant/components/jewish_calendar/binary_sensor.py +++ b/homeassistant/components/jewish_calendar/binary_sensor.py @@ -55,11 +55,13 @@ BINARY_SENSORS: tuple[JewishCalendarBinarySensorEntityDescription, ...] = ( key="erev_shabbat_hag", name="Erev Shabbat/Hag", is_on=lambda state: bool(state.erev_shabbat_chag), + entity_registry_enabled_default=False, ), JewishCalendarBinarySensorEntityDescription( key="motzei_shabbat_hag", name="Motzei Shabbat/Hag", is_on=lambda state: bool(state.motzei_shabbat_chag), + entity_registry_enabled_default=False, ), ) diff --git a/homeassistant/components/jewish_calendar/sensor.py b/homeassistant/components/jewish_calendar/sensor.py index aff9d7ee602..8a4e424fd84 100644 --- a/homeassistant/components/jewish_calendar/sensor.py +++ b/homeassistant/components/jewish_calendar/sensor.py @@ -54,11 +54,13 @@ INFO_SENSORS: tuple[SensorEntityDescription, ...] = ( key="omer_count", name="Day of the Omer", icon="mdi:counter", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="daf_yomi", name="Daf Yomi", icon="mdi:book-open-variant", + entity_registry_enabled_default=False, ), ) @@ -67,11 +69,13 @@ TIME_SENSORS: tuple[SensorEntityDescription, ...] = ( key="first_light", name="Alot Hashachar", # codespell:ignore alot icon="mdi:weather-sunset-up", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="talit", name="Talit and Tefillin", icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="sunrise", @@ -82,41 +86,49 @@ TIME_SENSORS: tuple[SensorEntityDescription, ...] = ( key="gra_end_shma", name='Latest time for Shma Gr"a', icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="mga_end_shma", name='Latest time for Shma MG"A', icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="gra_end_tfila", name='Latest time for Tefilla Gr"a', icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="mga_end_tfila", name='Latest time for Tefilla MG"A', icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="midday", name="Chatzot Hayom", icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="big_mincha", name="Mincha Gedola", icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="small_mincha", name="Mincha Ketana", icon="mdi:calendar-clock", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="plag_mincha", name="Plag Hamincha", icon="mdi:weather-sunset-down", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="sunset", @@ -127,21 +139,25 @@ TIME_SENSORS: tuple[SensorEntityDescription, ...] = ( key="first_stars", name="T'set Hakochavim", icon="mdi:weather-night", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="three_stars", name="T'set Hakochavim, 3 stars", icon="mdi:weather-night", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="upcoming_shabbat_candle_lighting", name="Upcoming Shabbat Candle Lighting", icon="mdi:candle", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="upcoming_shabbat_havdalah", name="Upcoming Shabbat Havdalah", icon="mdi:weather-night", + entity_registry_enabled_default=False, ), SensorEntityDescription( key="upcoming_candle_lighting",