From 655a1aea6cb6121c57240fee7ea4c85c478865c2 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 3 Jun 2009 17:04:16 +0000 Subject: Do not set the window title by default (make set-titles option default to off), wiping over the title is rude and annoying. Agreed by several. --- tmux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 71df2bfb..491e49d4 100644 --- a/tmux.c +++ b/tmux.c @@ -287,7 +287,7 @@ main(int argc, char **argv) options_set_number(&global_options, "prefix", '\002'); options_set_number(&global_options, "repeat-time", 500); options_set_number(&global_options, "set-remain-on-exit", 0); - options_set_number(&global_options, "set-titles", 1); + options_set_number(&global_options, "set-titles", 0); options_set_number(&global_options, "status", 1); options_set_number(&global_options, "status-attr", GRID_ATTR_REVERSE); options_set_number(&global_options, "status-bg", 2); -- cgit