dvtm+dtach works great with st. If you don't mind bash, I've attached my
script 'tm' that wraps it all up neatly. Just run 'tm' with a session
name of your choice and you can detach (C+\), share, keep multiple
active sessions, etc. I also have it configured in the config.h file to
auto switch colors if I su to root, login to a production box, etc.
I recommend compiling your own dtach from it's development tip. Very
stable right now. Also, in vt.c vt_forkpty(), I changed TERM to use
screen instead of rxvt; that fixed some emulation problems for me.
- setenv("TERM", COLORS >= 256 ? "rxvt-256color" : "rxvt", 1);
+ setenv("TERM", COLORS >= 256 ? "screen-256color" : "screen", 1);
Cheers -Ross
On 02/15/2013 04:14 PM, hiro wrote:
yes, I also had problems with dtach that I didn't want to debug, but
if someone says it should work stably nowadays I will consider it once
again.
do you use dvtm to workaround these problems? I don't need
multiplexing or strange other features, I only use ctrl-a d for
detaching and that's it
#!/usr/bin/env bash
if [[ $# -ne 1 || -z $1 ]]; then
SCRIPT=${0##*/}
BASIC="$SCRIPT <session-tag>\n"
SESSIONS=$(ls -1 $HOME/.dvtm-*-session 2>/dev/null)
if [[ -z $SESSIONS ]]; then
echo -e "Usage: $BASIC" 1>&2
exit 1
fi
echo -e "Usage:\n reconnect to a running session:" 1>&2
for s in $SESSIONS; do
s=${s#$HOME/.dvtm-}
echo " $SCRIPT ${s%-session}" 1>&2
done
echo -e "\n or begin a new session:\n $BASIC" 1>&2
exit 1
fi
ID=$(echo $1 | tr [A-Z] [a-z])
SESS="$HOME/.dvtm-$ID-session"
dtach -A $SESS -r winch dvtm-status $ID
exit 0
#!/usr/bin/env bash
if [[ $# -ne 1 || -z $1 ]]; then
echo -e "Usage: ${0##*/} <session-tag>\n" 1>&2
exit 1
fi
ID=$(echo $1 | tr [A-Z] [a-z])
FIFO="$HOME/.dvtm-$ID-status"
[[ -e "$FIFO" ]] || mkfifo "$FIFO"
chmod 600 $FIFO
while true; do
echo "`df 2>/dev/null | grep -E '(9[5-9]|100)%' | sed 's/.* \([0-9]*%\) \(.*\)/
\2:\1 /' | tr '\n' '-'`\
[SESSION: $ID]\
[`uptime | sed 's/.*age: //'`]\
[`date +\"%a %d-%b-%g %l:%M %p\"`"
sleep 10
done > $FIFO &
STATUS_PID=$!
dvtm -s $FIFO 2> /dev/null
kill $STATUS_PID
rm $FIFO
exit 0