Skip to content
Snippets Groups Projects
Commit 0f6bf4ce authored by Bob Lantz's avatar Bob Lantz
Browse files

start xterm with TERM=ansi to preserve title from bash.bashrc

fixes #128
parent 33c7e464
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ def makeTerm( node, title='Node', term='xterm', display=None ):
error( 'invalid terminal type: %s' % term )
return
display, tunnel = tunnelX11( node, display )
term = node.popen( cmds[ term ] + [ display ] )
term = node.popen( cmds[ term ] + [ display, '-e', 'env TERM=ansi bash'] )
return [ tunnel, term ] if tunnel else [ term ]
def cleanUpScreens():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment