-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
29 lines (23 loc) · 831 Bytes
/
.tmux.conf
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
# tmux config
bind-key C-b last-window
unbind % # Remove default binding since we’re replacing
bind | split-window -h
bind - split-window -v
bind -n M-PageUp prev
bind -n M-PageDown next
# Set status bar
set -g status-bg colour239
set -g status-fg white
set -g status-left '#[fg=colour154]#H #10S'
# Highlight active window
set-window-option -g window-status-current-style bg=red
set -g status-right '#[fg=colour226]#(uptime | cut -d',' -f2-)'
#set -g status-interval 2
#set -g status-right "#[fg=colour226,bg=colour239,bright]#(tmux-mem-cpu-load 2)#[default]"
#set -g status-right "#[fg=colour226,bg=colour239,bright]#(~/envscripts/bin/cpu.sh)#[default]"
# Set window notifications
setw -g monitor-activity on
set -g visual-activity on
setw -g automatic-rename
set -g set-titles on
#set -g set-titles-string '#S:#I.#P #W'