### Complete tmux2k Configuration Example Source: https://context7.com/2kabhishek/tmux2k/llms.txt A comprehensive example demonstrating various tmux2k features including theme, plugin layout, custom separators, gradients, and time format. ```bash # ~/.tmux.conf - Complete tmux2k configuration # Plugin manager set -g @plugin 'tmux-plugins/tpm' set -g @plugin '2kabhishek/tmux2k' # Theme and appearance set -g @tmux2k-theme 'catppuccin' set -g @tmux2k-icons-only false set -g @tmux2k-show-powerline true set -g @tmux2k-refresh-rate 2 # Custom separators set -g @tmux2k-left-sep '' set -g @tmux2k-right-sep '' # Plugin layout set -g @tmux2k-left-plugins "session git cwd" set -g @tmux2k-right-plugins "cpu ram battery network time" # CPU with gradient set -g @tmux2k-cpu-gradient 'heat' set -g @tmux2k-cpu-icon-link-to 'usage' set -g @tmux2k-cpu-display-load false # RAM with gradient set -g @tmux2k-ram-gradient 'catppuccin' set -g @tmux2k-ram-icon-link-to 'usage' # Battery with reverse gradient set -g @tmux2k-battery-gradient '!heat' # Git status set -g @tmux2k-git-display-status false # Time format set -g @tmux2k-time-format '%H:%M' # Window list set -g @tmux2k-window-list-alignment 'absolute-centre' set -g @tmux2k-window-list-format '#I:#W' # Initialize tpm (keep at bottom) run '~/.tmux/plugins/tpm/tpm' ``` -------------------------------- ### Install tmux2k via TPM Source: https://context7.com/2kabhishek/tmux2k/llms.txt Add the plugin to your .tmux.conf and install using the tmux prefix + I command. ```bash # Add to ~/.tmux.conf set -g @plugin '2kabhishek/tmux2k' # Then run tmux and press prefix + I to install # Default prefix is ctrl+b ``` -------------------------------- ### Install tmux2k Plugin Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Add this to your .tmux.conf to install tmux2k using the tpm plugin manager. After adding, run tmux and press `prefix + I` to install. ```bash set -g @plugin '2kabhishek/tmux2k' ``` -------------------------------- ### Configure Group Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Define groups of plugins with custom delimiters and colors. Use these groups in the left and right status bars. Example groups include CPU/RAM, battery/network, and time/uptime. ```bash set -g @tmux2k-group1-plugins "cpu ram" ``` ```bash set -g @tmux2k-group1-delimiter " | " ``` ```bash set -g @tmux2k-group1-colors "blue text" ``` ```bash set -g @tmux2k-group2-plugins "battery network" ``` ```bash set -g @tmux2k-group2-delimiter " • " ``` ```bash set -g @tmux2k-group2-colors "purple text" ``` ```bash set -g @tmux2k-group3-plugins "time uptime" ``` ```bash set -g @tmux2k-left-plugins "session group1 git" ``` ```bash set -g @tmux2k-right-plugins "group2 group3" ``` -------------------------------- ### Set Session Icon Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Configure the icon displayed for the session. You can use predefined keywords like 'session' or 'window', or any custom string. The example uses 'session' with the session name variable. ```bash set -g @tmux2k-session-icon " #S" ``` -------------------------------- ### Configure Custom Plugin in Tmux Source: https://context7.com/2kabhishek/tmux2k/llms.txt Example of how to add a custom plugin to the tmux status bar and set its colors via the tmux configuration file. ```bash # ~/.tmux.conf # Add custom plugin to status bar set -g @tmux2k-left-plugins "session custom git" # Set custom plugin colors in main.sh plugin_colors array: # ["custom"]="red text" # Or override via config set -g @tmux2k-custom-colors "orange text" # Customize your plugin's icon set -g @tmux2k-custom-icon "" ``` -------------------------------- ### Customize Duo Theme Colors Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md For the 'duo' theme, you can customize the foreground and background colors using these options. The example shows how to achieve the 'duo blue' variant. ```bash set -g @tmux2k-duo-fg "#1688f0" ``` ```bash set -g @tmux2k-duo-bg "#000000" ``` -------------------------------- ### Get Custom Tmux Option Source: https://context7.com/2kabhishek/tmux2k/llms.txt Retrieves a custom tmux option, providing a default value if not set. Used here to fetch a custom icon from the tmux configuration. ```bash custom_icon=$(get_tmux_option "@tmux2k-custom-icon" "") main() { # Your custom logic here local my_data="Hello World" echo "$custom_icon $my_data" } main ``` -------------------------------- ### Configure Theme and Appearance Source: https://context7.com/2kabhishek/tmux2k/llms.txt Customize the visual style, powerline separators, and icon display settings. ```bash # ~/.tmux.conf # Set color theme (options: default, catppuccin, gruvbox, monokai, onedark, duo) set -g @tmux2k-theme 'catppuccin' # Show only icons without text labels set -g @tmux2k-icons-only true # Customize duo theme colors set -g @tmux2k-duo-fg "#1688f0" set -g @tmux2k-duo-bg "#000000" # Configure powerline separators set -g @tmux2k-right-sep set -g @tmux2k-window-list-right-sep # Disable powerline style set -g @tmux2k-show-powerline false # Set session icon format (#S for session name, #W for window name) set -g @tmux2k-session-icon " #S" ``` -------------------------------- ### Configure CPU Temperature Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Configures temperature display settings including delimiter and rounding. ```bash # ~/.tmux.conf # Set temperature icon set -g @tmux2k-cpu-temp-icon '' # Set decimal delimiter (default: .) set -g @tmux2k-cpu-temp-delimiter '.' # Round temperature to integer (default: false) set -g @tmux2k-cpu-temp-round true # Add cpu-temp to right plugins set -g @tmux2k-right-plugins "cpu cpu-temp ram time" ``` -------------------------------- ### Configure Plugins Source: https://context7.com/2kabhishek/tmux2k/llms.txt Define active plugins and their refresh rates or specific color assignments. ```bash # ~/.tmux.conf # Configure left-side plugins set -g @tmux2k-left-plugins "session git cwd" # Configure right-side plugins set -g @tmux2k-right-plugins "cpu ram battery network time" # Set status bar refresh rate in seconds set -g @tmux2k-refresh-rate 5 # Customize individual plugin colors (background foreground) set -g @tmux2k-cpu-colors "light_green text" set -g @tmux2k-ram-colors "yellow text" set -g @tmux2k-battery-colors "pink text" set -g @tmux2k-git-colors "green text" set -g @tmux2k-time-colors "light_blue text" ``` -------------------------------- ### Configure Battery Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets icons for battery status and charging, and enables gradient coloring based on battery level. ```bash # ~/.tmux.conf # Customize battery icons set -g @tmux2k-battery-charging-icon '' set -g @tmux2k-battery-missing-icon '󱉝' # Battery level icons (0-25%, 25-50%, 50-75%, 75-90%, 90-100%) set -g @tmux2k-battery-percentage-0 '' set -g @tmux2k-battery-percentage-1 '' set -g @tmux2k-battery-percentage-2 '' set -g @tmux2k-battery-percentage-3 '' set -g @tmux2k-battery-percentage-4 '' # Apply gradient based on battery level set -g @tmux2k-battery-gradient '!heat' set -g @tmux2k-battery-icon-link-to 'usage' ``` -------------------------------- ### Configure Plugin Gradients and Icons Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Set gradient themes and icon link behaviors for supported plugins. Replace [plugin] with the specific plugin name, such as cpu or ram. ```bash set -g @tmux2k-[plugin]-gradient 'heat' set -g @tmux2k-[plugin]-icon-link-to 'usage' # example for cpu plugin: set -g @tmux2k-cpu-gradient 'catppuccin' # Use 'catppuccin' themed gradient set -g @tmux2k-cpu-icon-link-to 'usage' # Share usage value color with icon ``` -------------------------------- ### Configure CPU Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Adjust CPU usage display settings, load averages, and refresh intervals. ```bash # ~/.tmux.conf # Set CPU icon set -g @tmux2k-cpu-icon '' # Display CPU usage percentage (default: true) set -g @tmux2k-cpu-display-usage true # Show decimal precision in usage (default: true) set -g @tmux2k-cpu-usage-decimal true # Average CPU usage over n readings (0 = no averaging) # Example: 5 readings at 2s refresh = 10s average set -g @tmux2k-refresh-rate 2 set -g @tmux2k-cpu-usage-average 5 # Display CPU load averages (default: false) set -g @tmux2k-cpu-display-load true # Show load as percentages (default: true) set -g @tmux2k-cpu-load-percent true # Normalize load by CPU cores (default: true) set -g @tmux2k-cpu-load-normalize true # Select which load averages to display (options: 1m, 5m, 15m) set -g @tmux2k-cpu-load-averages '1m 5m 15m' ``` -------------------------------- ### Configure Network Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets icons for network connection states and defines plugin colors. ```bash # ~/.tmux.conf # Customize network icons set -g @tmux2k-network-ethernet-icon '󰈀' set -g @tmux2k-network-wifi-icon '' set -g @tmux2k-network-offline-icon '󰌙' # Add network to right plugins set -g @tmux2k-right-plugins "cpu ram network time" # Customize network plugin colors set -g @tmux2k-network-colors "purple text" ``` -------------------------------- ### Configure GPU Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets GPU icon, gradient usage, and color scheme for the GPU plugin. ```bash # ~/.tmux.conf # Set GPU icon set -g @tmux2k-gpu-icon '' # Apply gradient colors based on usage set -g @tmux2k-gpu-gradient 'heat' set -g @tmux2k-gpu-icon-link-to 'usage' # Add GPU to right plugins set -g @tmux2k-right-plugins "cpu gpu ram battery time" # Customize GPU plugin colors set -g @tmux2k-gpu-colors "red text" ``` -------------------------------- ### Apply Gradient Colors Source: https://context7.com/2kabhishek/tmux2k/llms.txt Enable dynamic gradient coloring for plugins based on usage percentages. ```bash # ~/.tmux.conf # Named gradients: catppuccin, gruvbox, monokai, onedark, heat, cosmic # Add -dark suffix for dark variants: catppuccin-dark, heat-dark # Prefix with ! to reverse: !gruvbox # Apply named gradient to CPU plugin set -g @tmux2k-cpu-gradient 'heat' set -g @tmux2k-cpu-icon-link-to 'usage' # Apply gradient to RAM plugin set -g @tmux2k-ram-gradient 'catppuccin' set -g @tmux2k-ram-icon-link-to 'usage' # Apply gradient to battery plugin set -g @tmux2k-battery-gradient '!gruvbox' set -g @tmux2k-battery-icon-link-to 'usage' # Apply gradient to GPU plugin set -g @tmux2k-gpu-gradient 'monokai-dark' set -g @tmux2k-gpu-icon-link-to 'usage' # Custom gradient with hex colors (R=0-32% G=33-65% B=66-100%) set -g @tmux2k-cpu-gradient '#ff0000 #00ff00 #0000ff' ``` -------------------------------- ### Configure CPU usage averaging Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Set the refresh rate and number of samples to average for CPU usage reporting. ```bash # Display a 10s avg w/2s refresh rate set -g @tmux2k-refresh-rate 2 set -g @tmux2k-cpu-usage-average 5 # Display a 1m avg w/15s refresh rate set -g @tmux2k-refresh-rate 15 set -g @tmux2k-cpu-usage-average 4 ``` -------------------------------- ### Configure Docker Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets Docker icon, container filtering, and plugin colors. ```bash # ~/.tmux.conf # Set Docker icon set -g @tmux2k-docker-icon '' # Filter containers by grep pattern set -g @tmux2k-docker-grep 'myapp' # Add docker to left plugins set -g @tmux2k-left-plugins "session docker git" # Customize docker plugin colors set -g @tmux2k-docker-colors "light_blue text" ``` -------------------------------- ### Configure Bandwidth Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Specifies the network interface and icons for monitoring upload and download speeds. ```bash # ~/.tmux.conf # Set network interface to monitor # macOS default: en0, Linux default: auto-detected set -g @tmux2k-bandwidth-network-name 'en0' # Customize bandwidth icons set -g @tmux2k-bandwidth-up-icon '' set -g @tmux2k-bandwidth-down-icon '' # Add bandwidth to right plugins set -g @tmux2k-right-plugins "bandwidth network time" # Customize bandwidth plugin colors set -g @tmux2k-bandwidth-colors "purple text" ``` -------------------------------- ### Configure tmux2k Status Bar and Plugins Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Defines the active plugins for the left and right status bar sections, sets the refresh rate, and demonstrates how to customize plugin colors. ```bash # set the left and right plugin sections set -g @tmux2k-left-plugins "session git cpu ram" set -g @tmux2k-right-plugins "battery network time" # control refresh rate of status bar plugins that display dynamic information set -g @tmux2k-refresh-rate 5 # to customize plugin colors set -g @tmux2k-[plugin-name]-colors "[background] [foreground]" set -g @tmux2k-cpu-colors "red black" # set cpu plugin bg to red, fg to black ``` -------------------------------- ### Configure RAM Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Customizes the RAM usage display, including icons, gradient colors, and plugin placement. ```bash # ~/.tmux.conf # Set RAM icon set -g @tmux2k-ram-icon '' # Apply gradient colors based on usage set -g @tmux2k-ram-gradient 'catppuccin' set -g @tmux2k-ram-icon-link-to 'usage' # Add RAM to right plugins set -g @tmux2k-right-plugins "cpu ram battery network time" # Customize RAM plugin colors set -g @tmux2k-ram-colors "yellow text" ``` -------------------------------- ### Configure Ping Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Set the server to ping, specify a port for checks, adjust the timeout, and set an icon for the ping plugin. Add ping to the right plugins and customize its colors. ```bash set -g @tmux2k-ping-server 'google.com' ``` ```bash set -g @tmux2k-ping-server 'myserver.com:443' ``` ```bash set -g @tmux2k-ping-timeout 5 ``` ```bash set -g @tmux2k-ping-icon '󱘖' ``` ```bash set -g @tmux2k-right-plugins "ping network time" ``` ```bash set -g @tmux2k-ping-colors "purple text" ``` -------------------------------- ### Configure Time Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets the date/time format and appearance for the time plugin. ```bash # ~/.tmux.conf # Set time format (strftime format) set -g @tmux2k-time-format '%a %I:%M %p' # Alternative formats: # 24-hour: '%H:%M' # With seconds: '%H:%M:%S' # Full date: '%Y-%m-%d %H:%M' # Day and time: '%a %d %b %H:%M' # Set time icon set -g @tmux2k-time-icon '' # Customize time plugin colors set -g @tmux2k-time-colors "light_blue text" ``` -------------------------------- ### Configure Weather Plugin Settings Source: https://context7.com/2kabhishek/tmux2k/llms.txt Set temperature scale, display conditions and location, specify a fixed location, and add the weather plugin to the status bar. Customize colors for the weather plugin. ```bash set -g @tmux2k-weather-scale 'c' ``` ```bash set -g @tmux2k-weather-display-condition true ``` ```bash set -g @tmux2k-weather-display-location true ``` ```bash set -g @tmux2k-weather-location 'New York' ``` ```bash set -g @tmux2k-right-plugins "weather time" ``` ```bash set -g @tmux2k-weather-colors "orange text" ``` -------------------------------- ### Configure GitHub Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Configures GitHub notification display, requiring gh CLI authentication. ```bash # ~/.tmux.conf # First authenticate with: gh auth login # Set GitHub icon set -g @tmux2k-github-icon '' # Add github to right plugins set -g @tmux2k-right-plugins "github network time" # Customize github plugin colors set -g @tmux2k-github-colors "green text" ``` -------------------------------- ### Configure CPU Gradient Source: https://context7.com/2kabhishek/tmux2k/llms.txt Sets the gradient style and icon behavior for the CPU plugin. ```bash set -g @tmux2k-cpu-gradient 'heat' set -g @tmux2k-cpu-icon-link-to 'usage' ``` -------------------------------- ### Configure Uptime Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Set the icon for the uptime plugin and add it to the right side of the status bar. Customize the colors for the uptime plugin. ```bash set -g @tmux2k-uptime-icon '󱎫' ``` ```bash set -g @tmux2k-right-plugins "uptime time" ``` ```bash set -g @tmux2k-uptime-colors "light_pink text" ``` -------------------------------- ### Configure Git Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Enables detailed git status and customizes icons and colors for the git plugin. ```bash # ~/.tmux.conf # Show detailed git status with file counts (default: false) set -g @tmux2k-git-display-status true # Customize git status icons set -g @tmux2k-git-repo-icon '' set -g @tmux2k-git-diff-icon '' set -g @tmux2k-git-no-repo-icon '' set -g @tmux2k-git-added-icon '' set -g @tmux2k-git-modified-icon '' set -g @tmux2k-git-updated-icon '' set -g @tmux2k-git-deleted-icon '' # Add git to left plugins set -g @tmux2k-left-plugins "session git cwd" # Customize git plugin colors set -g @tmux2k-git-colors "green text" ``` -------------------------------- ### Configure Window List Source: https://context7.com/2kabhishek/tmux2k/llms.txt Customize the window list in the center of the status bar by setting alignment, format, flags, and compact mode. Configure separators and colors for the window list. ```bash set -g @tmux2k-window-list-alignment 'absolute-centre' ``` ```bash set -g @tmux2k-window-list-format '#I:#W' ``` ```bash set -g @tmux2k-window-list-flags true ``` ```bash set -g @tmux2k-window-list-compact false ``` ```bash set -g @tmux2k-window-list-left-sep '' ``` ```bash set -g @tmux2k-window-list-right-sep '' ``` ```bash set -g @tmux2k-window-list-colors "black blue" ``` -------------------------------- ### Set tmux2k Theme Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Configure which theme tmux2k should use. Available themes include default, catppuccin, gruvbox, monokai, onedark, and duo, with and without icons. ```bash set -g @tmux2k-theme 'onedark' ``` -------------------------------- ### Configure Mise Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Set the maximum number of tools to display and exclude specific tools from the mise plugin. Add mise to the left plugins and customize its colors. ```bash set -g @tmux2k-mise-max-tools 4 ``` ```bash set -g @tmux2k-mise-exclude-tools 'usage node' ``` ```bash set -g @tmux2k-left-plugins "session mise git" ``` ```bash set -g @tmux2k-mise-colors "light_yellow text" ``` -------------------------------- ### Custom Plugin Template Source: https://context7.com/2kabhishek/tmux2k/llms.txt A template script for creating custom tmux2k plugins. It includes sourcing utility functions and setting the current directory. ```bash #!/usr/bin/env bash # File: ~/.tmux/plugins/tmux2k/plugins/custom.sh current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "$current_dir/../lib/utils.sh" ``` -------------------------------- ### Configure Current Working Directory Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Customize the display of the current working directory by setting an icon, truncation length, minimum depth, and prefix characters. Add the cwd plugin to the left side of the status bar and configure its colors. ```bash set -g @tmux2k-cwd-icon '' ``` ```bash set -g @tmux2k-cwd-length 30 ``` ```bash set -g @tmux2k-cwd-min-depth 3 ``` ```bash set -g @tmux2k-cwd-prefix-chars 2 ``` ```bash set -g @tmux2k-left-plugins "session git cwd" ``` ```bash set -g @tmux2k-cwd-colors "blue text" ``` -------------------------------- ### Configure Session Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Customize the session plugin to display the current tmux session or window name using a specified format. Configure the icon and colors for the session plugin. ```bash set -g @tmux2k-session-icon '' ``` ```bash set -g @tmux2k-session-format '#S' ``` ```bash set -g @tmux2k-session-format '#W' ``` ```bash set -g @tmux2k-session-colors "green text" ``` -------------------------------- ### Group tmux2k plugins Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Define plugin groups and their delimiters to organize status bar information, then assign them to the left or right status bar sections. ```bash # Define multiple groups set -g @tmux2k-group1-plugins "cpu ram" set -g @tmux2k-group1-delimiter " | " set -g @tmux2k-group2-plugins "battery network" set -g @tmux2k-group2-delimiter " • " set -g @tmux2k-group3-plugins "time uptime" # Use them in your status bar set -g @tmux2k-left-plugins "session group1 git" set -g @tmux2k-right-plugins "group2 group3" ``` -------------------------------- ### Define Custom Gradient Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Create a custom gradient by providing a space-separated list of hex colors. The gradient is split into equal ranges based on the number of colors provided. ```bash # 3-color gradient: R=0-32% G=33-65% B=66-100% set -g @tmux2k-cpu-gradient '#ff0000 #00ff00 #0000ff' ``` -------------------------------- ### Set Custom Powerline Separators Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Customize the symbols used for the right status bar separator and the window list right separator. Ensure your font supports these glyphs. ```bash set -g @tmux2k-right-sep  ``` ```bash set -g @tmux2k-window-list-right-sep  ``` -------------------------------- ### Override Theme Colors Source: https://context7.com/2kabhishek/tmux2k/llms.txt Define custom hex codes or use predefined color names to override default theme colors. ```bash # ~/.tmux.conf # Available base colors: white, gray, black # light_blue, blue, dark_blue # light_green, green, dark_green # light_orange, orange, dark_orange # light_pink, pink, dark_pink # light_purple, purple, dark_purple # light_red, red, dark_red # light_yellow, yellow, dark_yellow # Override base colors with hex values set -g @tmux2k-light-yellow '#f8c800' set -g @tmux2k-blue '#0066cc' # Configure UI colors set -g @tmux2k-bg-main '#ffffff' set -g @tmux2k-text '#000000' set -g @tmux2k-message-bg '#61afef' set -g @tmux2k-message-fg '#282c34' set -g @tmux2k-pane-active-border '#98c379' set -g @tmux2k-pane-border '#3e4451' set -g @tmux2k-prefix-highlight '#e06c75' ``` -------------------------------- ### Enable Icons Only Mode Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Set this option to true if you only want to display icons in the status bar, hiding text labels. ```bash set -g @tmux2k-icons-only true ``` -------------------------------- ### Configure Updates Plugin Source: https://context7.com/2kabhishek/tmux2k/llms.txt Add the updates plugin to the right side of the status bar and customize its colors. This plugin supports package managers like pacman, apt, and brew. ```bash set -g @tmux2k-right-plugins "updates network time" ``` ```bash set -g @tmux2k-updates-colors "light_red text" ``` -------------------------------- ### Set custom colors for plugin groups Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Override the default inherited colors for specific plugin groups. ```bash # Set colors for specific groups set -g @tmux2k-group1-colors "blue text" set -g @tmux2k-group2-colors "purple text" ``` -------------------------------- ### Customize tmux2k Theme Colors Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Use these settings in your tmux configuration to override default theme colors. Restart tmux after applying changes. ```bash set -g @tmux2k-light-yellow '#f8c800' # change light yellow base color set -g @tmux2k-bg-main '#ffffff' # change bg to white set -g @tmux2k-prefix-highlight '#f8c800' # change prefix color ``` -------------------------------- ### Disable Powerline Separators Source: https://github.com/2kabhishek/tmux2k/blob/main/README.md Set this option to false to disable the use of powerline separators in the status bar. ```bash set -g @tmux2k-show-powerline false ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.