From 29a864aa1bb8932b4b8efbf580f3110b3eec0a06 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Thu, 1 Oct 2015 03:23:57 +0200 Subject: [PATCH] * Set window geometry hints to off by default. The constant trickle of problems it causes are annoying. May set up a warning dialog when turning on. * Actually set the DBUs interface to on by default. For some reason it wasn't active by default. --- terminatorlib/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 82f8b7be..6f4a871c 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -86,10 +86,10 @@ except ImportError: DEFAULTS = { 'global_config': { - 'dbus' : False, + 'dbus' : True, 'focus' : 'click', 'handle_size' : -1, - 'geometry_hinting' : True, + 'geometry_hinting' : False, 'window_state' : 'normal', 'borderless' : False, 'tab_position' : 'top',