← Back

guest@termux:~$ cat best-termux-settings-to-change-first.md

Best Termux Settings To Change First

·2 min read·Learn Termux

Improve your Termux experience with these important settings every beginner should change after installation.

Best Termux Settings To Change First

Update Packages First

Before changing anything, update all packages.

pkg update && pkg upgrade -y

This prevents many common issues.


Enable Storage Access

Allow Termux to access your files.

termux-setup-storage

Tap:

Allow

when Android asks for permission.


Change Package Mirror

A faster mirror improves download speed.

Run:

termux-change-repo

Choose a nearby mirror server.


Enable Extra Keys Row

The extra keys row adds useful buttons like:

Create the config folder:

mkdir -p ~/.termux

Create the config file:

nano ~/.termux/termux.properties

Add this:

extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]

Save the file and reload settings:

termux-reload-settings

Install a Better Text Editor

Nano is beginner-friendly and easier to use.

pkg install nano -y

Install Basic Tools

Useful packages every beginner should install:

pkg install git curl wget python -y

Change Terminal Font Size

Open:

Termux → Settings → Font Size

Increase the font size for better readability.


Enable Dark Theme

Go to:

Termux → Settings → Colors

Choose a dark color scheme that feels comfortable.


Prevent Android From Killing Termux

Some Android devices stop Termux in the background.

Disable battery optimization for Termux:

Settings → Apps → Termux → Battery → Unrestricted

This helps long-running scripts work properly.


Verify Everything Works

Test Python:

python --version

Test Git:

git --version

If version numbers appear, your setup is working correctly.


Final Thoughts

These small settings make Termux much easier and more comfortable to use.

After this setup, you can start:

guest@termux:~$ whoami

Dexter

Sharing practical Termux guides, Linux tips, and Android hacking tutorials for beginners and advanced users.

guest@termux:~$ subscribe --email you@example.com

Get new guides delivered to your inbox. No spam, unsubscribe anytime.

guest@termux:~$ grep -l 'related' /guides/*.md