-
-
Save asanchez75/fe71d3d445372d1ac41625a3834d9a28 to your computer and use it in GitHub Desktop.
simple tmux theme
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
set -g pane-active-border-bg default | |
set -g pane-active-border-fg "colour14" | |
set -g pane-border-fg "colour239" | |
set -g message-fg black | |
set -g message-bg "colour14" | |
set -g status-justify left | |
set -g status-bg "colour236" | |
set -g status-fg "colour14" | |
setw -g clock-mode-colour "colour14" | |
setw -g status-left " #S " | |
setw -g status-left-fg black | |
setw -g status-left-bg "colour14" | |
set -g status-right-length "100" | |
# 24 hour time: `%H:%M` | |
# 12 hour time: `%-I:%M %p` | |
set -g status-right "#[bg=colour239]#[fg=white] %a %B %-d, %Y #[fg=colour14].:. #[fg=white]%H:%M #[fg=black,bg=colour14] #h " | |
setw -g window-status-format " #I: #W " | |
# separator symbols: ┃ ║ │ ❮ ❯ ╲ ╱ left bar: ⎸ right bar: ⎹ | |
setw -g window-status-separator "" | |
setw -g window-status-fg "colour14" | |
setw -g window-status-current-fg white | |
setw -g window-status-current-bg "colour239" | |
setw -g window-status-current-format "#[fg="colour14"] #[fg=white]#I: #W#[fg=colour14] " | |
setw -g window-status-bell-fg "colour9" | |
setw -g window-status-activity-fg yellow | |
set -g window-style 'fg=colour247,bg=colour237' | |
set -g window-active-style 'fg=colour250,bg=black' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment