Cowardly disable the dbus server by default
This commit is contained in:
parent
d760685866
commit
0c6ba18d2b
|
@ -34,7 +34,7 @@ These are the options Terminator currently supports in the global_config section
|
|||
.TP
|
||||
.B dbus
|
||||
Control whether or not Terminator will load its DBus server. When this server is loaded, running Terminator multiple times will cause the first Terminator process to open additional windows. If this configuration item is set to False, or the python dbus module is unavailable, running Terminator multiple times will run a separate Terminator process for each invocation.
|
||||
Default value: \fBTrue\fR
|
||||
Default value: \fBFalse\fR
|
||||
.TP
|
||||
.B focus
|
||||
Control how focus is given to terminals. 'click' means the focus only moves to a terminal after you click in it. 'sloppy' means the focus will follow the mouse pointer. 'system' means the focus will match that used by a GNOME window manager.
|
||||
|
|
|
@ -76,7 +76,7 @@ except ImportError:
|
|||
|
||||
DEFAULTS = {
|
||||
'global_config': {
|
||||
'dbus' : True,
|
||||
'dbus' : False,
|
||||
'focus' : 'click',
|
||||
'handle_size' : -1,
|
||||
'geometry_hinting' : True,
|
||||
|
|
Loading…
Reference in New Issue