Help: mobile set on don't disturb

alaabarazi

New member
Hi,
I want the mobile to set on don't disturb if I receive 2 messages from the Same application in one minute. But it should not change status if I received call.
How to do it?
Thanks!
 

MacroDroidDev

Administrator
Staff member
Something like this should work (The type of message you are talking about is not clear so I will assume you mean SMS messages in this case and you can adjust the trigger as appropriate):

T: SMS Received
A: Wait Until Trigger (SMS Received) - Cancel after timeout (1 min)
A: Set Priority Mode/Do not disturb mode.
 

alaabarazi

New member
Something like this should work (The type of message you are talking about is not clear so I will assume you mean SMS messages in this case and you can adjust the trigger as appropriate):

T: SMS Received
A: Wait Until Trigger (SMS Received) - Cancel after timeout (1 min)
A: Set Priority Mode/Do not disturb mode.
Thank you!
I meant any messages from signal, telegram etc
And this should not work when I receive calls from these apps.
 

hsurB

Well-known member
Notification recieved should work then. But you need to configure it on your own based on details of notifications so it matched only when there is incoming message
 

alaabarazi

New member
Notification recieved should work then. But you need to configure it on your own based on details of notifications so it matched only when there is incoming message
How to add regex to check if notification includ call or calling or ...etc?
 

MacroDroidDev

Administrator
Staff member
Just look at what text comes in for each case and try to match it. You probably don't even need to use regex just basic word matching should do
 

alaabarazi

New member
Just look at what text comes in for each case and try to match it. You probably don't even need to use regex just basic word matching should do
Thank you! Could you give example. For example if call notification contain either call or calling word. What should I type for matching ?
 
Top