aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/commands/shell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/leap_cli/commands/shell.rb')
-rw-r--r--lib/leap_cli/commands/shell.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/leap_cli/commands/shell.rb b/lib/leap_cli/commands/shell.rb
index 5c16f92..2822481 100644
--- a/lib/leap_cli/commands/shell.rb
+++ b/lib/leap_cli/commands/shell.rb
@@ -35,11 +35,10 @@ module LeapCli; module Commands
if cmd == :ssh
command = "#{ssh} #{node.name}"
elsif cmd == :mosh
- command = "mosh --ssh \"#{ssh}\" #{node.name}"
+ command = "MOSH_TITLE_NOPREFIX=1 mosh --ssh \"#{ssh}\" #{node.name}"
end
log 2, command
- title = "echo -n \"\\033]0;#{username}@#{node.domain.full}\007\""
- exec "#{title} && #{command}"
+ exec "#{command}"
end
end; end \ No newline at end of file