Autostart web browser on boot on specific URL in fullscreen mode #4168
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi(*゜▽゜)_□ Here’s a setup you can try to launch a web browser in kiosk mode with Termux on boot: Steps:
#!/data/data/com.termux/files/usr/bin/bash Launch Chrome in kiosk mode to open a specific URLDelay to ensure the system has booted completelysleep 10 Start Chrome in kiosk mode
Additional Notes: Using Termux:API: If you need more control over device functions, install Termux:API to issue system commands. SSHD: Since you mentioned needing SSHD, ensure it’s running by adding sshd to your startup script if necessary. Hope this helps(T^T) |
Beta Was this translation helpful? Give feedback.
Hi(*゜▽゜)_□
Here’s a setup you can try to launch a web browser in kiosk mode with Termux on boot:
Steps:
Install Termux:Boot: This addon allows scripts in the ~/.termux/boot/ directory to run automatically when the device boots. Install it from the Play Store or F-Droid if you haven’t already.
Create a startup script: In Termux, create a new script in the boot directory by running:
#!/data/data/com.termux/files/usr/bin/bash
Launch Chrome in kiosk mode to open a spe…