← Back

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.

bash
pkg update && pkg upgrade -y

This prevents many common issues.

---

Enable Storage Access

Allow Termux to access your files.

bash
termux-setup-storage

Tap:

text
Allow

when Android asks for permission.

---

Change Package Mirror

A faster mirror improves download speed.

Run:

bash
termux-change-repo

Choose a nearby mirror server.

---

Enable Extra Keys Row

The extra keys row adds useful buttons like:

- CTRL - ESC - TAB - Arrow keys

Create the config folder:

bash
mkdir -p ~/.termux

Create the config file:

bash
nano ~/.termux/termux.properties

Add this:

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

Save the file and reload settings:

bash
termux-reload-settings

---

Install a Better Text Editor

Nano is beginner-friendly and easier to use.

bash
pkg install nano -y

---

Install Basic Tools

Useful packages every beginner should install:

bash
pkg install git curl wget python -y

---

Change Terminal Font Size

Open:

text
Termux → Settings → Font Size

Increase the font size for better readability.

---

Enable Dark Theme

Go to:

text
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:

text
Settings → Apps → Termux → Battery → Unrestricted

This helps long-running scripts work properly.

---

Verify Everything Works

Test Python:

bash
python --version

Test Git:

bash
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:

- Learning Linux commands - Installing packages - Writing scripts - Programming on Android

Dexter

Dexter

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

Newsletter

Stay in the loop

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

Related Posts