From 7a469bd795150b843f707cf514d731ef7702c8d8 Mon Sep 17 00:00:00 2001 From: Erik Cowley Date: Wed, 9 Aug 2023 23:06:23 -0400 Subject: [PATCH] Add screen settings --- .screenrc | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .screenrc diff --git a/.screenrc b/.screenrc new file mode 100644 index 0000000..7db0607 --- /dev/null +++ b/.screenrc @@ -0,0 +1,31 @@ +autodetach on +startup_message off + +bind k other +bind h prev +bind l next +bind H number -1 +bind L number +1 + +# Set up hardstatus +hardstatus off +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%{-}' + +# Fix the residual editor text +altscreen on + +# Fix for Name column in windowlist only show "bash" +windowlist string "%4n %h%=%f" + +# Indicate 256 color screen +term screen-256color + +# Bind Ctrl-A f or F for activating/deactivating hardstatus line +bind f eval "hardstatus ignore" +bind F eval "hardstatus alwayslastline" + +# no visual bell +vbell "off" + +# eof