-
Notifications
You must be signed in to change notification settings - Fork 87
Quick Start
Fabio Luciano edited this page Feb 19, 2026
·
13 revisions
Get PowerKit running with a minimal configuration.
- tmux 3.0+
- Bash 5.0+ (5.1+ recommended)
- Nerd Font for icons
macOS users: macOS ships with Bash 3.x. Install Bash 5+ with
brew install bash.
Add to your ~/.tmux.conf:
# PowerKit plugin
set -g @plugin 'fabioluciano/tmux-powerkit'
# Enable desired plugins (comma-separated)
set -g @powerkit_plugins "datetime,battery,cpu,memory,hostname,git"
# Choose a theme (catppuccin/mocha is the default)
set -g @powerkit_theme "catppuccin"
set -g @powerkit_theme_variant "mocha"Reload tmux: tmux source ~/.tmux.conf
Example Configuration: See the author's tmux.conf for an advanced real-world configuration.
PowerKit provides 43 plugins organized by category:
set -g @powerkit_plugins "battery,cpu,memory,swap,disk,loadavg,uptime,temperature"set -g @powerkit_plugins "netspeed,wifi,vpn,ping,external_ip"set -g @powerkit_plugins "git,github,kubernetes,terraform"set -g @powerkit_plugins "datetime,pomodoro,bitwarden"PowerKit includes 32 themes with 56 variants:
# Dark themes
set -g @powerkit_theme "catppuccin"
set -g @powerkit_theme_variant "mocha"
# Light themes
set -g @powerkit_theme "github"
set -g @powerkit_theme_variant "light"Popular themes: tokyo-night, catppuccin, dracula, nord, gruvbox
Customize the separators between segments:
set -g @powerkit_separator_style "rounded" # normal, rounded, flame, pixel, honeycomb, noneEach plugin has configurable options:
# Battery thresholds
set -g @powerkit_plugin_battery_warning_threshold "30"
set -g @powerkit_plugin_battery_critical_threshold "15"
# Custom icons
set -g @powerkit_plugin_cpu_icon ""
# Cache duration (seconds)
set -g @powerkit_plugin_weather_cache_ttl "3600"PowerKit registers several keybindings:
| Key | Action |
|---|---|
prefix + C-e |
Options viewer |
prefix + C-y |
Keybindings viewer |
prefix + C-r |
Theme selector |
prefix + C-d |
Clear cache |
- Configuration - All configuration options
- Themes - Theme gallery and customization
- Keybindings - Keybinding system details