forked from jimeh/tmux-themepack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.tmuxtheme
62 lines (45 loc) · 1.41 KB
/
default.tmuxtheme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Default Tmux Theme
#
# This theme matches Tmux's default style as closely as possible. It functions
# as a template for creating new themes, and as a way to reset a running Tmux
# server's style to it's defaults.
# Status update interval
set -g status-interval 15
# Basic status bar colors
set -g status-style bg=green,fg=black
# Left side of status bar
set -g status-left-style bg=green,fg=black
set -g status-left-length 10
set -g status-left "[#S]"
# Right side of status bar
set -g status-right-style bg=green,fg=black
set -g status-right-length 40
set -g status-right "\"#H\" %H:%M %d-%b-%y"
# Window status
set -g window-status-format "#I:#W#F"
set -g window-status-current-format "#I:#W#F"
# Current window status
set -g window-status-current-style bg=green,fg=black
# Window with activity status
set -g window-status-activity-style bg=black,fg=green
# Window separator
set -g window-status-separator " "
# Window status alignment
set -g status-justify left
# Pane border
set -g pane-border-style bg=default,fg=white
# Active pane border
set -g pane-active-border-style bg=default,fg=green
# Pane number indicator
set -g display-panes-colour blue
set -g display-panes-active-colour red
# Clock mode
set -g clock-mode-colour blue
set -g clock-mode-style 24
# Message
set -g message-style bg=yellow,fg=black
# Command message
set -g message-command-style bg=green,fg=black
# Mode
set -g mode-style bg=yellow,fg=black