Notice the current: 0 will change from 0 to 1 when the automation is currently running. This happens as long as a Time Delay is running in the automation. e.g. Wait for time to pass.
How does one use the Attribute “current: 1” as a condition or trigger in another automation?
select “Current” from the drop-down list
the values are 0 for not running, and 1 for running.
EDIT: you must then go into YAML editor, and remove the quotes arounf the value, e.g “1” has to be changed to just 1, otherwise the check will fail !
.Eg to have something trigger when an animation runs, set it to trigger on change from 0 to 1
to have an automation run only when another is running, add the condition “Current”, value 1.
You can make animations which mutually exclude each other: in actions, put “delay 5 seconds”, then condition “other script” “Current” 0. The delay is to avoid the race condition in case both scripts try to start at exactly the same moment.