forked from thomastardy/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.screenrc
16 lines (15 loc) · 792 Bytes
/
.screenrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Set the default window name to empty string instead of the arbitrary "bash"
shelltitle ''
# 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).