Hello, I'm trying to write a task in Tasker that will allow me to change the system volume from 0 to 7 when a starred contact is calling (which I already configured in a profile), but
only if the phone is in silent mode and not vibrate mode. Is there any variable I can use as an if condition that would differentiate between vibrate and silent mode?
Currently the task looks like this:
If system volume = 0
system volume = 7
wait 45 seconds
system volume = 0
I'd like it to be something like this:
If system volume = 0
If vibrate = disabled
system volume = 7
wait 45 seconds
system volume = 0
Does such a variable exist? Thanks in advance!