aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/install/opensim.tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/install/opensim.tmux.conf')
-rw-r--r--scripts/install/opensim.tmux.conf52
1 files changed, 52 insertions, 0 deletions
diff --git a/scripts/install/opensim.tmux.conf b/scripts/install/opensim.tmux.conf
new file mode 100644
index 0000000..ea342a2
--- /dev/null
+++ b/scripts/install/opensim.tmux.conf
@@ -0,0 +1,52 @@
1# Tmux has a habit of changing what these options are for each version, so this is a bit of a mess.
2
3set-option -g prefix C-a
4unbind-key C-b
5bind-key C-a send-prefix
6
7# r reloads the configuration, handy
8bind r source-file ~/.tmux.conf
9
10unbind % # Remove default binding since we’re replacing them.
11bind | split-window -h
12bind - split-window -v
13
14set-option -g bell-action any
15set-option -g bell-on-alert on
16
17set-option -g history-limit 100000
18
19# These three wont work under Ubuntu 16.04.
20set-option -g mouse-resize-pane on
21set-option -g mouse-select-pane on
22set-option -g mouse-select-window on
23set-option -g mouse-utf8 on
24
25#set-option -g set-remain-on-exit on
26set-option -g set-titles on
27set-option -g set-titles-string '#W'
28
29set-option -g status-interval 1
30set-option -g status-justify centre
31set-option -g status-utf8 on
32
33set-option -g status-left-length 80
34set-option -g status-left '[#H #S #F]'
35set-option -g status-right-length 80
36set-option -g status-right '%F #(uptime)'<-----># &F is ISO date, uptime starts with the current time, and ends with the load average. B-)
37
38set-option -g visual-activity on
39set-option -g visual-content on
40set-option -g visual-silence on
41
42set-option -gw clock-mode-style 24
43# This wont work under Ubuntu 16.04.
44set-option -gw mode-mouse on
45# Instead do this (also defaults to turning on the above three mouse things) -
46#set-option -gw mouse on
47
48# Highlight active window
49set-option -gw window-status-current-bg red
50
51# Set window notifications
52set-option -gw monitor-activity on