-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreenrc
29 lines (24 loc) · 990 Bytes
/
screenrc
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
#
# .screenrc
#
# Set the default window name to empty string instead of the arbitrary "bash"
shelltitle ''
# disable "Wuff, Wuff!!"
vbell off
# increase default scroll back from a tiny 100 to something more reasonable.
defscrollback 2000
# skip the startup message
startup_message off
# Set the window caption.
# I use caption instead of hardstatus, so it is available per split window too
# (hardstatus is only per complete screen).
caption always "%{= KW}%-Lw%{= wb}%n %t %{= KW}%+Lw %-=| ${USER}@%H | %M%d %c%{-}"
# Some decryption hints:
# %{= KW} background light black (aka dark gray) with foreground light white
# %{= wb} background dark white (ake light gray) with foreground dark blue
# %-Lw all windows before the current window.
# %n%f %t current window number, flags and title.
# %+Lw all windows after the current window.
# %-= pad remaining spaces.
# %H hostname.
# %M%d %s month and day (MmmDD) and current time (HH:MM).