A Termux add-on app to run programs at boot.
When developing (or packaging), note that this app needs to be signed with the same key as the main Termux app in order to have the permission to execute scripts.
Released under the GPLv3 license.
- Install the Termux:Boot app.
- Start the Termux:Boot app once by clicking on its launcher icon. This allows the app to be run at boot.
- Create the
~/.termux/boot/
directory. - Put scripts you want to execute inside the
~/.termux/boot/
directory. If there are multiple files, they will be executed in a sorted order. - Note that you may want to run
termux-wake-lock
as first thing if you want to ensure that the device is prevented from sleeping.
Example: To start an sshd server and prevent the device from sleeping at boot, create the following file at ~/.termux/boot/start-sshd
:
termux-wake-lock
sshd