all repos — st @ b5e29cce5246f30dc671cbb9486af704bc8cd2fc

st (suckless terminal) config

Add -T, as recommended by Dmitrij D. Czarkoff
Christoph Lohmann 20h@r-36.net
commit

b5e29cce5246f30dc671cbb9486af704bc8cd2fc

parent

4a193b96862c8ed7147048592aa4a898b3c05b5b

2 files changed, 8 insertions(+), 0 deletions(-)

jump to
M st.1st.1

@@ -15,6 +15,8 @@ .RB [ \-o

.IR file ] .RB [ \-t .IR title ] +.RB [ \-T +.IR title ] .RB [ \-l .IR line ] .RB [ \-w

@@ -36,6 +38,8 @@ .RB [ \-i ]

.RB [ \-o .IR file ] .RB [ \-t +.IR title ] +.RB [ \-T .IR title ] .RB [ \-l .IR line ]

@@ -77,6 +81,9 @@ This feature is useful when recording st sessions. A value of "-" means

standard output. .TP .BI \-t " title" +defines the window title (default 'st'). +.TP +.BI \-T " title" defines the window title (default 'st'). .TP .BI \-w " windowid"
M st.cst.c

@@ -4302,6 +4302,7 @@ case 'l':

opt_line = EARGF(usage()); break; case 't': + case 'T': opt_title = EARGF(usage()); break; case 'w':