diff options
-rw-r--r-- | pym/output.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/output.py b/pym/output.py index e361e063d..f23bac263 100644 --- a/pym/output.py +++ b/pym/output.py @@ -95,7 +95,7 @@ def nc_len(mystr): def xtermTitle(mystr): if havecolor and dotitles and os.environ.has_key("TERM") and sys.stderr.isatty(): myt=os.environ["TERM"] - legal_terms = ["xterm","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode"] + legal_terms = ["xterm","Eterm","aterm","rxvt","screen","kterm","rxvt-unicode","gnome"] for term in legal_terms: if myt.startswith(term): sys.stderr.write("\x1b]2;"+str(mystr)+"\x07") |