From 7957f02d897c09b598558674bad38c48091c3ebd Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Tue, 12 Jan 2021 17:08:59 +0100 Subject: Add a .screenrc file for some more comfort during SCREEN sessions --- make_slackware_live.sh | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/make_slackware_live.sh b/make_slackware_live.sh index b51e573..067fab6 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1680,6 +1680,49 @@ if [ ! -e ${LIVE_ROOTDIR}/usr/bin/vi ]; then fi fi +# Add a screen configuration: +cat <<"EOT" > ${LIVE_ROOTDIR}/etc/skel/.screenrc +vbell on +autodetach on +startup_message off +pow_detach_msg "Screen session of \$LOGNAME \$:cr:\$:nl:ended." +defscrollback 3000 +attrcolor b ".I" +defbce "on" +term xterm-256color +shell -$SHELL + +# xterm: +termcap xterm hs@:cs=\E[%i%d;%dr:im=\E[4h:ei=\E[4l +terminfo xterm hs@:cs=\E[%i%p1%d;%p2%dr:im=\E[4h:ei=\E[4l +termcapinfo xterm Z0=\E[?3h:Z1=\E[?3l:is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;4;6l +termcapinfo xterm* OL=10000 +termcapinfo xterm 'VR=\E[?5h:VN=\E[?5l' +termcapinfo xterm 'k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~' +termcapinfo xterm 'kh=\EOH:kI=\E[2~:kD=\E[3~:kH=\EOF:kP=\E[5~:kN=\E[6~' +termcapinfo xterm 'hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007' +termcapinfo xterm 'vi=\E[?25l:ve=\E[34h\E[?25h:vs=\E[34l' +termcapinfo xterm 'XC=K%,%\E(B,[\304,\\\\\326,]\334,{\344,|\366,}\374,~\337' +termcapinfo xterm* be +termcapinfo xterm* ti@:te@ +termcapinfo xterm 'Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm' + +# vt100: +termcap vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC +terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC +termcapinfo linux C8 + +# Tabbed colored hardstatus line +hardstatus alwayslastline +hardstatus string '%{= Kd} %{= Kd}%-w%{= Kr}[%{= KW}%n %t%{= Kr}]%{= Kd}%+w %-= %{KG} %H%{KW}|%{KY}%101`%{KW}|%D %M %d %Y%{= Kc} %C%A%{-}' +# Hide hardstatus: ctrl-a f +bind f eval "hardstatus ignore" +# Show hardstatus: ctrl-a F +bind F eval "hardstatus alwayslastline" +EOT +# Give root a copy: +cat ${LIVE_ROOTDIR}/etc/skel/.screenrc > ${LIVE_ROOTDIR}/root/.screenrc + if [ -f ${LIVE_ROOTDIR}/etc/rc.d/rc.networkmanager ]; then # Enable NetworkManager if present: chmod +x ${LIVE_ROOTDIR}/etc/rc.d/rc.networkmanager -- cgit v1.2.3