aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/opensim.tmux.conf
diff options
context:
space:
mode:
authoronefang2019-05-21 04:41:57 +1000
committeronefang2019-05-21 04:41:57 +1000
commit8723177732fe0843116a81b5c935cb440799e243 (patch)
tree94b2018d492c321c6ae69c79e812353a1d831fbf /scripts/opensim.tmux.conf
parentTypo-- (diff)
downloadopensim-SC_OLD-8723177732fe0843116a81b5c935cb440799e243.zip
opensim-SC_OLD-8723177732fe0843116a81b5c935cb440799e243.tar.gz
opensim-SC_OLD-8723177732fe0843116a81b5c935cb440799e243.tar.bz2
opensim-SC_OLD-8723177732fe0843116a81b5c935cb440799e243.tar.xz
Move install related scripts and stuff into their own directory.
Diffstat (limited to 'scripts/opensim.tmux.conf')
-rw-r--r--scripts/opensim.tmux.conf52
1 files changed, 0 insertions, 52 deletions
diff --git a/scripts/opensim.tmux.conf b/scripts/opensim.tmux.conf
deleted file mode 100644
index ea342a2..0000000
--- a/scripts/opensim.tmux.conf
+++ /dev/null
@@ -1,52 +0,0 @@
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