🔥 Burn Fat Fast. Discover How! 💪

So since we can send Record audio with a single command like y | Termux Hackers (Users)

So since we can send Record audio with a single command like you have seen above, you can write it in a simple alias command so that you can just press a single key and termux will start recording audio silently and we will also set an alias so that we can stop the recording too. below is a simple alias command example where if you will press "r" button on your keyboard and press enter, Termux will start recording through your microphone and it will not stop until you press "q" and enter. copy and paste all of these commands in your termux and restart your termux, and the shortcuts will be added.

This command is for Start Recording (shortcut r):

$ echo "alias r='termux-microphone-record -l 0'" /data/data/com.termux/files/usr/etc/bash.bashrc

This command is for Stop Recording

$ (shortcut q):
echo "alias q='termux-microphone-record -q'" /data/data/com.termux/files/usr/etc/bash.bashrc

This command is for Checking the Recording Status (shortcut i):

$ echo "alias i='termux-microphone-record -i'" >> /data/data/com.termux/files/usr/etc/bash.bashrc

@Termux_For_Android