A clean, minimal, and highly customizable tmux theme with built-in system monitoring
- 🎯 Minimal Design - Clean and distraction-free interface
- 📊 System Monitoring - Built-in CPU, memory, battery, and time display
- 🎨 Highly Customizable - Easy color and component customization
- 🌈 Multiple Color Schemes - Catppuccin, Tokyo Night, Dracula, Gruvbox
- ⚡ Lightweight - Fast and efficient with minimal resource usage
- 🔧 Easy Installation - One-line installation with TPM
- tmux (version 2.1 or higher)
- TPM (Tmux Plugin Manager)
- Add the plugin to your
~/.tmux.conf:
set -g @plugin 'binoymanoj/tmux-minimal-theme'- Reload tmux configuration:
# Reload tmux config
tmux source-file ~/.tmux.conf- Install the plugin by pressing
prefix + I(default prefix isCtrl-b)
- Clone the repository:
git clone https://github.com/binoymanoj/tmux-minimal-theme.git ~/.tmux/plugins/tmux-minimal-theme- Add to your
~/.tmux.conf:
run-shell ~/.tmux/plugins/tmux-minimal-theme/minimal.tmux- Reload tmux configuration:
tmux source-file ~/.tmux.confYou can customize the theme colors by adding these options to your ~/.tmux.conf:
# Theme colors
set -g @minimal_theme_bg_color "#1A1D23"
set -g @minimal_theme_active_color "#b4befe"
set -g @minimal_theme_inactive_color "#6c7086"
set -g @minimal_theme_text_color "#cdd6f4"
set -g @minimal_theme_accent_color "#b4befe"
set -g @minimal_theme_border_color "#44475a"# Already applied by defaultset -g @minimal_theme_bg_color "#1a1b26"
set -g @minimal_theme_active_color "#7aa2f7"
set -g @minimal_theme_inactive_color "#565f89"
set -g @minimal_theme_text_color "#c0caf5"
set -g @minimal_theme_accent_color "#7aa2f7"
set -g @minimal_theme_border_color "#414868"set -g @minimal_theme_bg_color "#282a36"
set -g @minimal_theme_active_color "#bd93f9"
set -g @minimal_theme_inactive_color "#6272a4"
set -g @minimal_theme_text_color "#f8f8f2"
set -g @minimal_theme_accent_color "#bd93f9"
set -g @minimal_theme_border_color "#44475a"set -g @minimal_theme_bg_color "#1d2021"
set -g @minimal_theme_active_color "#83a598"
set -g @minimal_theme_inactive_color "#665c54"
set -g @minimal_theme_text_color "#ebdbb2"
set -g @minimal_theme_accent_color "#83a598"
set -g @minimal_theme_border_color "#504945"The status bar displays the following information:
- Left: Session name with icon
- Right: Current directory, memory usage, date, time, battery percentage
- Define your colors in
~/.tmux.conf:
# Your custom theme
set -g @minimal_theme_bg_color "#your-bg-color"
set -g @minimal_theme_active_color "#your-active-color"
set -g @minimal_theme_inactive_color "#your-inactive-color"
set -g @minimal_theme_text_color "#your-text-color"
set -g @minimal_theme_accent_color "#your-accent-color"
set -g @minimal_theme_border_color "#your-border-color"- Reload tmux configuration:
tmux source-file ~/.tmux.confFor more advanced customization options, see CUSTOMIZATION.md.
- Ensure TPM is installed and working:
ls ~/.tmux/plugins/- Check if the plugin is listed:
tmux show-options -g | grep @plugin- Reload tmux configuration:
tmux source-file ~/.tmux.confThe theme requires some system commands to display information:
- Memory:
freecommand (installprocpson some systems) - Battery:
/sys/class/power_supply/directory (Linux systems)
- Ensure your terminal supports 256 colors:
echo $TERM- Add to your
~/.tmux.conf:
set -g default-terminal "tmux-256color"
set-option -sa terminal-features ',xterm-256color:RGB'Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Clone your fork:
git clone https://github.com/binoymanoj/tmux-minimal-theme.git- Create a feature branch:
git checkout -b feature/your-feature- Make your changes and test them
- Submit a pull request
To add a new color scheme:
- Add your color definitions to
scripts/color-variants.sh - Update the README.md with the new scheme
- Add a screenshot to the
screenshots/directory
See CHANGELOG.md for a detailed history of changes.
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by various tmux themes in the community
- Color schemes adapted from popular themes like Catppuccin, Tokyo Night, etc.
- Thanks to all contributors and users

