diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-30 21:54:25 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-30 21:54:25 +0200 |
commit | c1d19fa5486da8706b73785fc5350139867493b0 (patch) | |
tree | 8debaf8a63594437299655ba328159c38e31d2da /src/poezio.py | |
parent | bbdc14aaa5a47e77ad46d1ad7b4465ac065d6677 (diff) | |
download | poezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.gz poezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.bz2 poezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.xz poezio-c1d19fa5486da8706b73785fc5350139867493b0.zip |
Set the terminal title to "poezio" by default
Diffstat (limited to 'src/poezio.py')
-rw-r--r-- | src/poezio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/poezio.py b/src/poezio.py index c5c0b33c..0c1db593 100644 --- a/src/poezio.py +++ b/src/poezio.py @@ -23,6 +23,8 @@ def main(): """ Enter point """ + sys.stdout.write("\x1b]0;poezio\x07") + sys.stdout.flush() import config config_path = config.check_create_config_dir() config.run_cmdline_args(config_path) |