Created
April 23, 2025 19:31
-
-
Save smallfx/2783ddbd44218769754affb9116b8d27 to your computer and use it in GitHub Desktop.
basic monochrome tmux "theme" config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use a monochrome statusline, with host and session names on the right. | |
set-option -g status-position bottom | |
set -g status-bg black | |
set -g status-fg white | |
set -g status-left '' | |
set -g status-right ' #h: #S ' | |
# Use normal and bright monochrome colors to show a tab line on the left. | |
set -g status-justify left | |
set-window-option -g window-status-separator '' | |
set-window-option -g window-status-format '#[bg=brightblack,fg=white] #I #W ' | |
set-window-option -g window-status-current-format '#[bg=white,fg=black] #I #W ' | |
# Switching panes should change the foreground color but not border colors. | |
set -g window-style 'bg=default,fg=white' | |
set -g window-active-style 'bg=default,fg=brightwhite' | |
set -g pane-border-style 'bg=default,fg=black' | |
set -g pane-active-border-style 'bg=default,fg=black' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment