blob: 0f2ea1998b8c1c5998d408bc78e740d498f56f51 (
plain)
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
|
set -g default-command "${SHELL}"
set -g default-terminal "screen-256color"
set -g set-titles on
set -g set-titles-string "#T"
set -g status-bg '#DAEFEF'
set -g status-fg black
setw -g window-status-format "#[fg=black]#[bg=#DAEFEF] #I #W "
setw -g window-status-current-format "#[fg=black]#[bg=#8888CC] * #[bg=#EAEA9E] #W "
set -g status-left ""
set -g status-right "#[fg=black][ %y.%m.%d %Hh%M #(battery) ]"
unbind C-b
set -g prefix ^T
unbind ^T
bind ^T last-window
unbind C-a
unbind x
bind x lock-server
unbind c
bind c new-window
unbind " "
bind " " next-window
unbind BSpace
bind BSpace previous-window
unbind A
bind A command-prompt "rename-window %%"
unbind w
bind w list-windows
unbind k
bind k confirm-before "kill-window"
unbind l
bind l refresh-client
unbind |
bind | split-window
unbind '"'
bind '"' choose-window
|