A list of awesome things related to Termux
- Termux Float Termux Float - Github A Termux add-on app to show the terminal in a floating terminal window.
- Termux Widget The Termux:Widget add-on provides a widget with shortcuts to run scripts placed in the $HOME/.shortcuts/ folder, allowing quick access to frequently used commands without typing
- Termux Tasker A Termux add-on app allowing Termux programs to be executed from Tasker.
- https://github.com/moverest/termux-smses A simple fish script to send sms interactively with termux.
- https://wiki.termux.com/wiki/Remote_Access Some tips on setting up remote access to Termux
- https://github.com/tomhiggins/TermuxSSHDsetup Scripts and notes for setting up and using SSHd on your Android device using Termux so that you can SSH, SFTP, and SSHFS to your Android
- How to browser internet inside Termux - https://steemit.com/utopian-io/@rufans/how-to-browse-the-internet-from-command-line-with-termux-on-android
- Play mp3 files - https://steemit.com/utopian-io/@rufans/how-to-play-mp3-files-from-command-line-with-termux
- Open URL from Termux - termux/termux-packages#166
- https://github.com/4544fa8d/AndroTermux Simple way to build Android apps in Termux.
- https://github.com/TheDiamondYT1/termux-buildapk A simple build script to quickly build Android apps on termux. Nothing major. Doesnt work for gradle.
- apktool This apktool is specially compiled for termux..
- https://github.com/Harshiv-Patel/termux-jdkTools A bunch of jdk tools to use with Termux.
- https://github.com/wisehackermonkey/termux Termux server for battery monitor on andriod
- https://github.com/Hax4us/Tmux-Bunch Tmux-Bunch is a first tool for complete apk modding in TERMUX (included :- decompiling , recompiling , signapk , zipalign)
- https://github.com/michalbednarski/TermuxAm Android Oreo-compatible am command reimplementation (am (Activity Manager) command in Android can be used to start Activity or send Broadcast from shell, however since Android Oreo that command only works from adb shell, not from apps. This is modified version of that command that is usable from app.)
- https://github.com/cryzed/Termux-Bridge Simple "bridge" that allows applications not running under Termux to execute shell commands within the Termux environment and getting their output.
- Hacking Tools from Termux oficial page
- Installing scipy https://wiki.termux.com/wiki/Installing_Scipy_The_Easy_Way
- Using Jupyter notebooks http://www.leouieda.com/blog/scipy-on-android.html
How to check if a script is running inside Termux
if [[ $0 == *termux* ]]; then
# Add here your Termux specific code
fi