What does 'Exclusive" checkbox do exactly? #1564
-
Sorry if this is a dumb question but i cant understand what the "Exclusive" checkbox does. I have tried looking on reddit, google, and even gone through the Issues and Disscussions tab on Github but havent found an explanation of what it does. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
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:
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 will be ran and also Action 3 will also run. |
Beta Was this translation helpful? Give feedback.
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:
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…