From f5bd7b16d49ab8983f326e4aba1677d1a27fdf44 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 15 Sep 2014 11:41:14 -0400 Subject: a few ui tweaks in the watcher menu --- ssh.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssh.py b/ssh.py index 92a5cb7..0e9bda4 100644 --- a/ssh.py +++ b/ssh.py @@ -44,7 +44,7 @@ class Connection(object): self.chan.close() def select_stream(self): - self.chan.send("\033[2J\033[HTermcast") + self.chan.send("\033[2J\033[HWelcome to Termcast!") row = 3 key_code = ord('a') keymap = {} @@ -62,6 +62,7 @@ class Connection(object): self.chan.send("\033[2J\033[H") return keymap[c] elif c == 'q': + self.chan.send("\r\n") return None else: return self.select_stream() -- cgit v1.2.3-54-g00ecf