-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.screenrc
58 lines (49 loc) · 1.8 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
multiuser on
autodetatch on
defscrollback 10000
hardstatus alwayslastline
hardstatus string "%{=b wK}[%c:%s]%{= wK}%14=%-w%{=b bR} %n*%f %t %{-} %+w%=%{= dd}"
# %{= wK} : Set text to Bold Black over White
# [%c:%s] : Display time as 24 HH:MM:SS inside brackets
# %{= wK} : Set text to Black over White
# %14= : Set a 14% Padding
# %-w : Show prior window numbers and names
# %{=b bR}: Sets text to Bold Red over Blue
# : Space character
# %n* : Show current window number followed by an *
# %f : Show current window flags
# %t : Show current window title
# : Space character
# %{-} : Undo last color change
# %+w : Show remaining window numbers and names
# %= : Pad the remaining space in terminal width
# %{= dd} : Restore default colors
## An attribute/color modifier is is used to change the attributes or the color
## settings. Its format is ‘[attribute modifier] [color description]’. The
## attribute modifier must be prefixed by a change type indicator if it can be
## confused with a color description. The following change types are known:
# + add the specified set to the current attributes
# - remove the set from the current attributes
# ! invert the set in the current attributes
# = change the current attributes to the specified set
## The attribute set can either be specified as a hexadecimal number or a
## combination of the following letters:
# d dim
# u underline
# b bold
# r reverse
# s standout
# B blinking
## Colors are coded either as a hexadecimal number or two letters specifying the
## desired background and foreground color (in that order). The following colors
## are known:
# k black
# r red
# g green
# y yellow
# b blue
# m magenta
# c cyan
# w white
# d default color
# . leave color unchanged