Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.
Discussion options

You must be logged in to vote

Actions are executed in order from top to bottom. When an event happens, each action top to bottom is checked if it should react to the event, if yes, action will run, if not next one is checked.

Let's say you have 3 actions in this order:

  1. When power mode is Quiet & when on AC adapter
  2. When power mode is Quiet & when not on AC adapter
  3. When power mode is Quiet

In this case, if you switch to Quiet mode and you are on AC adapter, the Action 1 will match and it will be executed. The second doesn't match so it wouldn't run anyway, but Action 3 also technically matches. If Action 1 is Exclusive, once it matches no other actions will execute.

However, if you uncheck "Exclusive" on Action 1 - it…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Etrit1
Comment options

Answer selected by BartoszCichecki
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants