Count the Omer

The Count the Omer action returns the phrase for counting the Omer on a given date.

This is useful when you want an automation or script to announce or display the daily Omer count, for example as part of an evening routine during the Omer period.

This action does not support targets. In the UI, you are not prompted to choose an area, device, entity, or label. Instead, you provide the date and tradition to count for.

Using this action from the user interface

If you prefer building automations and scripts visually, Home Assistant walks you through this action step by step. You pick what to target, tweak a few options, and save. No YAML knowledge required.

To count the Omer from an automation or a script:

  1. Go to Settings > Automations & scenes.
  2. Open an existing automation or script, or select Create automation > Create new automation.
  3. If you’re setting up a new automation, add a trigger in the When section. Scripts don’t need a trigger. They run when something else calls them.
  4. In the Then do section, select Add action.
  5. From the search box, search for and select Jewish Calendar: Count the Omer.
  6. Select the Nusach, and optionally set the Date, After sunset, and Language.
  7. Select Save.

Options in the UI

Date (Optional)

The date to count the Omer for. Defaults to today.

After sunset (Optional)

Uses the next Hebrew day, which starts at sunset, for the given date. This option is ignored if the date is empty. Defaults to on.

Nusach (Required)

The nusach (tradition) to count the Omer in. One of Sfarad, Ashkenaz, Adot Mizrah, or Italian.

Language (Optional)

The language to count the Omer in. Supported languages are English, Hebrew, and French. Defaults to Hebrew.

Using this action in YAML

If you work directly in YAML, or you want to know exactly what Home Assistant does under the hood, this section has the technical reference. It lists the field names you use in YAML, their types, and which ones are required.

In YAML, refer to this action as jewish_calendar.count_omer. Because this action returns data, use response_variable to capture the result. A basic example looks like this:

ActionActions are used in several places in Home Assistant. As part of a script or automation, actions define what is going to happen once a trigger is activated. In scripts, an action is called *sequence*. [Learn more]
action: jewish_calendar.count_omer
data:
  nusach: sfarad
  date: "2025-05-20"
  language: en
response_variable: omer

This counts the Omer for the given date and stores the result in the omer variable.

Options in YAML

date date

The date to count the Omer for. Defaults to today.

after_sunset boolean

Uses the next Hebrew day, which starts at sunset, for the given date. This option is ignored if the date is empty.

nusach string Required, default: sfarad

The nusach (tradition) to count the Omer in. One of sfarad, ashkenaz, adot_mizrah, or italian.

language string

The language to count the Omer in. Supported values are en, he, and fr. Defaults to Hebrew.

Response data

The action returns the following data:

  • message: The phrase for counting the Omer. Empty when there is no Omer count on the given day.
  • weeks: The number of complete weeks counted.
  • days: The number of days counted beyond the complete weeks.
  • total_days: The total number of days counted.

For the example above, the response looks similar to this:

Result
message: >-
  Today is the thirty-seventh day, which are five weeks and two days of the
  Omer
weeks: 5
days: 2
total_days: 37

More examples

Real scenarios where this action shows up in automations and scripts. Copy any example and adapt it to your setup.

Tip

You don’t need to edit YAML to use these examples. Copy a YAML snippet from this page, open the automation editor in Home Assistant, and press Ctrl+V (or Cmd+V on Mac). Home Assistant automatically converts the pasted YAML into the visual editor format, whether it’s a full automation, a single trigger, a condition, or an action.

Count today’s Omer in Hebrew

For a minimal call, provide only the required nusach. With no date, the action counts the current Hebrew day, taking the current time relative to sunset into account, and returns the text in Hebrew by default.

ActionActions are used in several places in Home Assistant. As part of a script or automation, actions define what is going to happen once a trigger is activated. In scripts, an action is called *sequence*. [Learn more]
action: jewish_calendar.count_omer
data:
  nusach: sfarad
response_variable: omer

This returns a response similar to:

Result
message: היום ארבעה עשר יום שהם שני שבועות לעומר
weeks: 2
days: 0
total_days: 14

Try it yourself

Ready to test this? Open Settings > Tools > Actions, search for this action, fill in the fields, and select Perform action. You see what happens on your actual entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more] without writing a line of YAML.

Still stuck?

The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with the action you’re calling and what you expected to happen, or share on our subreddit /r/homeassistant.

Tip

AI assistants like ChatGPT or Claude can also explain actions or suggest the right one when you describe what you want in plain language.