summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-04-30 21:54:25 +0200
committermathieui <mathieui@mathieui.net>2014-04-30 21:54:25 +0200
commitc1d19fa5486da8706b73785fc5350139867493b0 (patch)
tree8debaf8a63594437299655ba328159c38e31d2da
parentbbdc14aaa5a47e77ad46d1ad7b4465ac065d6677 (diff)
downloadpoezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.gz
poezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.bz2
poezio-c1d19fa5486da8706b73785fc5350139867493b0.tar.xz
poezio-c1d19fa5486da8706b73785fc5350139867493b0.zip
Set the terminal title to "poezio" by default
-rw-r--r--src/poezio.py2
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)