-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Terminal Emulators
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to terminal emulators on Arch Linux, including popular terminals, configuration, and terminal customization.
Install:
# Install GNOME Terminal
sudo pacman -S gnome-terminal
# Launch
gnome-terminalInstall:
# Install Konsole
sudo pacman -S konsole
# Launch
konsoleInstall:
# Install Alacritty
sudo pacman -S alacritty
# Launch
alacrittyInstall:
# Install kitty
sudo pacman -S kitty
# Launch
kittyInstall:
# Install Terminator
sudo pacman -S terminator
# Launch
terminatorConfigure:
# Edit preferences
# Edit > Preferences
# Or edit config
vim ~/.config/gnome-terminal/profiles/Configure:
# Edit config
vim ~/.config/alacritty/alacritty.ymlExample:
window:
opacity: 0.9
font:
size: 12.0
colors:
primary:
background: '#1e1e1e'Configure bash:
# Edit bashrc
vim ~/.bashrc
# Or bash_profile
vim ~/.bash_profileInstall zsh:
# Install zsh
sudo pacman -S zsh
# Change shell
chsh -s /bin/zsh
# Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"Install fish:
# Install fish
sudo pacman -S fish
# Change shell
chsh -s /bin/fishInstall tmux:
# Install tmux
sudo pacman -S tmux
# Launch
tmux
# Create session
tmux new -s mysession
# Attach
tmux attach -t mysessionInstall screen:
# Install screen
sudo pacman -S screen
# Launch
screen
# Create session
screen -S mysession
# Detach: Ctrl+A, D
# Attach: screen -r mysessionCheck shell:
# Check shell
echo $SHELL
# Check terminal
echo $TERMEnable colors:
# In bashrc
export TERM=xterm-256colorThis guide covered terminal emulators, configuration, shells, multiplexers, and troubleshooting.
- Arch Linux System Configuration - System setup
- Arch Linux Development Environment - Development
- ArchWiki Terminal Emulators: https://wiki.archlinux.org/title/List_of_applications/Utilities#Terminal_emulators
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.