If you need to detect whether you are running in Termux from a bash script, check if $PREFIX contains the string com.termux:

echo $PREFIX | grep -o "com.termux"

This can also be used to set a variable in a Taskfile:

vars:
  TERMUX: '{{and .PREFIX (contains "com.termux" .PREFIX)}}'

Source