From 26c37221969223181c5d83bc6d33b00cc6ac956c Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 29 Jun 2008 02:01:06 +0100 Subject: [PATCH] Set saner release defaults. Should close LP #237866 --- terminatorlib/config.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 4017021f..8606a01f 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -92,16 +92,16 @@ class TerminatorConfValuestore: 'background_image' : '', 'backspace_binding' : 'ascii-del', 'delete_binding' : 'delete-sequence', - 'cursor_blink' : False, + 'cursor_blink' : True, 'emulation' : 'xterm', - 'font' : 'Serif 10', + 'font' : 'Mono 8', 'foreground_color' : '#AAAAAA', 'scrollbar_position' : "right", 'scroll_background' : True, - 'scroll_on_keystroke' : False, - 'scroll_on_output' : False, - 'scrollback_lines' : 100, - 'focus' : 'sloppy', + 'scroll_on_keystroke' : True, + 'scroll_on_output' : True, + 'scrollback_lines' : 500, + 'focus' : 'click', 'exit_action' : 'close', 'palette' : '#000000000000:#CDCD00000000:#0000CDCD0000:#CDCDCDCD0000:#30BF30BFA38E:#A53C212FA53C:#0000CDCDCDCD:#FAFAEBEBD7D7:#404040404040:#FFFF00000000:#0000FFFF0000:#FFFFFFFF0000:#00000000FFFF:#FFFF0000FFFF:#0000FFFFFFFF:#FFFFFFFFFFFF', 'word_chars' : '-A-Za-z0-9,./?%&#:_', @@ -111,7 +111,7 @@ class TerminatorConfValuestore: 'use_custom_command' : False, 'custom_command' : '', 'use_system_font' : True, - 'use_theme_colors' : True, + 'use_theme_colors' : False, 'http_proxy' : '', 'ignore_hosts' : ['localhost','127.0.0.0/8','*.local'], 'encoding' : 'UTF-8',