diff options
author | David Walter Seikel | 2016-11-08 15:49:56 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-08 15:49:56 +1000 |
commit | 96eda14b7a1caff77da000a9a957b20ab1a1bb6e (patch) | |
tree | ceb91518776a8b36af8f08c155074fb77f5a437a /scripts/opensim.tmux.conf | |
parent | Reduce default logging level to INFO. (diff) | |
download | opensim-SC-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.zip opensim-SC-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.gz opensim-SC-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.bz2 opensim-SC-96eda14b7a1caff77da000a9a957b20ab1a1bb6e.tar.xz |
Lots of hacking up the scripts to work with the new setup, and more.
Diffstat (limited to 'scripts/opensim.tmux.conf')
-rw-r--r-- | scripts/opensim.tmux.conf | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/scripts/opensim.tmux.conf b/scripts/opensim.tmux.conf new file mode 100644 index 0000000..ecd0b04 --- /dev/null +++ b/scripts/opensim.tmux.conf | |||
@@ -0,0 +1,46 @@ | |||
1 | set-option -g prefix C-a | ||
2 | unbind-key C-b | ||
3 | bind-key C-a send-prefix | ||
4 | |||
5 | # r reloads the configuration, handy | ||
6 | bind r source-file ~/.tmux.conf | ||
7 | |||
8 | unbind % # Remove default binding since we’re replacing them. | ||
9 | bind | split-window -h | ||
10 | bind - split-window -v | ||
11 | |||
12 | set-option -g bell-action any | ||
13 | set-option -g bell-on-alert on | ||
14 | |||
15 | set-option -g history-limit 100000 | ||
16 | |||
17 | set-option -g mouse-resize-pane on | ||
18 | set-option -g mouse-select-pane on | ||
19 | set-option -g mouse-select-window on | ||
20 | set-option -g mouse-utf8 on | ||
21 | |||
22 | #set-option -g set-remain-on-exit on | ||
23 | set-option -g set-titles on | ||
24 | set-option -g set-titles-string '#W' | ||
25 | |||
26 | set-option -g status-interval 1 | ||
27 | set-option -g status-justify centre | ||
28 | set-option -g status-utf8 on | ||
29 | |||
30 | set-option -g status-left-length 80 | ||
31 | set-option -g status-left '[#H #S #F]' | ||
32 | set-option -g status-right-length 80 | ||
33 | set-option -g status-right '%F #(uptime)'<-----># &F is ISO date, uptime starts with the current time, and ends with the load average. B-) | ||
34 | |||
35 | set-option -g visual-activity on | ||
36 | set-option -g visual-content on | ||
37 | set-option -g visual-silence on | ||
38 | |||
39 | set-option -gw clock-mode-style 24 | ||
40 | set-option -gw mode-mouse on | ||
41 | |||
42 | # Highlight active window | ||
43 | set-option -gw window-status-current-bg red | ||
44 | |||
45 | # Set window notifications | ||
46 | set-option -gw monitor-activity on | ||