From a98c7c4812ed3cc27bc8848815735821003f36d0 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Wed, 26 Aug 2015 20:04:39 +0200 Subject: [PATCH] Some minor updates to the manual and apidoc --- .../terminatorlib/configobj/configobj.html | 12 ++++++++ .../html/_modules/terminatorlib/cwd.html | 13 ++++++++ .../html/_modules/terminatorlib/notebook.html | 19 +++++++----- .../html/_modules/terminatorlib/paned.html | 4 ++- .../_modules/terminatorlib/prefseditor.html | 28 ++++++++++++++++-- .../html/_modules/terminatorlib/terminal.html | 23 +++++++------- .../html/_modules/terminatorlib/util.html | 15 +++++----- doc/apidoc/_build/html/genindex.html | 4 +++ doc/apidoc/_build/html/objects.inv | Bin 7578 -> 7584 bytes doc/apidoc/_build/html/searchindex.js | 2 +- .../_build/html/terminatorlib.configobj.html | 12 ++++---- doc/apidoc/_build/html/terminatorlib.html | 8 ++++- .../_build/html/_sources/gettingstarted.txt | 12 +++++--- doc/manual/_build/html/gettingstarted.html | 14 +++++---- doc/manual/_build/html/searchindex.js | 2 +- doc/manual/source/gettingstarted.rst | 12 +++++--- 16 files changed, 127 insertions(+), 53 deletions(-) diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/configobj/configobj.html b/doc/apidoc/_build/html/_modules/terminatorlib/configobj/configobj.html index 47646e71..0bf7ec9d 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/configobj/configobj.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/configobj/configobj.html @@ -2196,6 +2196,18 @@ out.append(line) indent_string = self.indent_type * section.depth + + # Do a little sorting for convenience + section.scalars = sorted(section.scalars) + section.sections = sorted(section.sections) + if 'default' in section.scalars: + # pop it and move to front + section.scalars.remove('default') + section.scalars.insert(0, 'default') + if 'default' in section.sections: + section.sections.remove('default') + section.sections.insert(0, 'default') + for entry in (section.scalars + section.sections): if entry in section.defaults: # don't write out default values diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/cwd.html b/doc/apidoc/_build/html/_modules/terminatorlib/cwd.html index 3397a465..ac5247aa 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/cwd.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/cwd.html @@ -182,6 +182,13 @@ import pwd from util import dbg, err +try: + import psutil + psutil_avail = True +except (ImportError): + dbg('psutil not found') + psutil_avail = False +
[docs]def get_default_cwd(): """Determine a reasonable default cwd""" cwd = os.getcwd() @@ -212,6 +219,8 @@ elif system == 'SunOS': dbg('Using SunOS get_pid_cwd') func = sunos_get_pid_cwd + elif psutil_avail: + func = psutil_cwd else: dbg('Unable to determine a get_pid_cwd for OS: %s' % system) @@ -235,6 +244,10 @@
[docs]def sunos_get_pid_cwd(pid): """Determine the cwd for a given PID on SunOS kernels""" return(proc_get_pid_cwd(pid, '/proc/%s/path/cwd')) +
+
[docs]def psutil_cwd(pid): + """Determine the cwd using psutil which also supports Darwin""" + return psutil.Process(pid).as_dict()['cwd'] # vim: set expandtab ts=4 sw=4:
diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/notebook.html b/doc/apidoc/_build/html/_modules/terminatorlib/notebook.html index 7efaa726..eb9d0e35 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/notebook.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/notebook.html @@ -448,18 +448,23 @@ dbg('inserting page at position: %s' % tabpos) self.insert_page(widget, None, tabpos) - child_widgets = [widget] - child_widgets .extend(enumerate_descendants(widget)) + + if maker.isinstance(widget, 'Terminal'): + containers, objects = ([], [widget]) + else: + containers, objects = enumerate_descendants(widget) + term_widget = None - for term_widget in child_widgets: + for term_widget in objects: if maker.isinstance(term_widget, 'Terminal'): self.set_last_active_term(term_widget.uuid) - self.set_tab_label(term_widget, label) - self.set_tab_label_packing(term_widget, not self.config['scroll_tabbar'], - not self.config['scroll_tabbar'], - gtk.PACK_START) break + self.set_tab_label(widget, label) + self.set_tab_label_packing(term_widget, not self.config['scroll_tabbar'], + not self.config['scroll_tabbar'], + gtk.PACK_START) + self.set_tab_reorderable(widget, True) self.set_current_page(tabpos) self.show_all() diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/paned.html b/doc/apidoc/_build/html/_modules/terminatorlib/paned.html index a3d93c27..f4ad92df 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/paned.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/paned.html @@ -320,6 +320,7 @@
[docs] def do_redistribute(self, recurse_up=False, recurse_down=False): """Evenly divide available space between sibling panes""" + maker = Factory() #1 Find highest ancestor of the same type => ha highest_ancestor = self while type(highest_ancestor.get_parent()) == type(highest_ancestor): @@ -328,7 +329,8 @@ # (1b) If Super modifier, redistribute higher sections too if recurse_up: grandfather=highest_ancestor.get_parent() - if grandfather != self.get_toplevel(): + if maker.isinstance(grandfather, 'VPaned') or \ + maker.isinstance(grandfather, 'HPaned') : grandfather.do_redistribute(recurse_up, recurse_down) gobject.idle_add(highest_ancestor._do_redistribute, recurse_up, recurse_down) diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/prefseditor.html b/doc/apidoc/_build/html/_modules/terminatorlib/prefseditor.html index 4a22a044..9cfe4e19 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/prefseditor.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/prefseditor.html @@ -1291,7 +1291,7 @@ name = _('New Layout') if name in values: - i = 1 + i = 0 while name in values: i = i + 1 name = '%s %d' % (_('New Layout'), i) @@ -1502,7 +1502,18 @@
[docs] def on_profile_name_edited(self, cell, path, newtext): """Update a profile name""" - oldname = cell.get_property('text') + oldname_broken = cell.get_property('text') + + guiget = self.builder.get_object + treeview = guiget('profilelist') + treeselection = treeview.get_selection() + treeselection.select_path(path) + (model, pathlist) = treeselection.get_selected_rows() + tree_iter = model.get_iter(pathlist[0]) + oldname = model.get_value(tree_iter,0) + if oldname != oldname_broken: + dbg('edited signal provides the wrong cell: %s != %s' %(oldname, oldname_broken)) + if oldname == newtext or oldname == 'default': return dbg('PrefsEditor::on_profile_name_edited: Changing %s to %s' % @@ -1540,7 +1551,18 @@
[docs] def on_layout_name_edited(self, cell, path, newtext): """Update a layout name""" - oldname = cell.get_property('text') + oldname_broken = cell.get_property('text') + + guiget = self.builder.get_object + treeview = guiget('layoutlist') + treeselection = treeview.get_selection() + treeselection.select_path(path) + (model, pathlist) = treeselection.get_selected_rows() + tree_iter = model.get_iter(pathlist[0]) + oldname = model.get_value(tree_iter,0) + if oldname != oldname_broken: + dbg('edited signal provides the wrong cell: %s != %s' %(oldname, oldname_broken)) + if oldname == newtext or oldname == 'default': return dbg('Changing %s to %s' % (oldname, newtext)) diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/terminal.html b/doc/apidoc/_build/html/_modules/terminatorlib/terminal.html index 2e0810b9..d133775f 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/terminal.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/terminal.html @@ -1009,6 +1009,13 @@ dbg('Terminal::on_keypress: Called on %s with no event' % widget) return(False) + # Workaround for IBus intefering with broadcast when using dead keys + # Environment also needs IBUS_DISABLE_SNOOPER=1, or double chars appear + # in the receivers. + if (event.state | gtk.gdk.MODIFIER_MASK ) ^ gtk.gdk.MODIFIER_MASK != 0: + dbg('Terminal::on_keypress: Ingore processed event with event.state %d' % event.state) + return(False) + # FIXME: Does keybindings really want to live in Terminator()? mapping = self.terminator.keybindings.lookup(event) @@ -1394,7 +1401,6 @@ data['old_char_height'] = self.vte.get_char_height() data['old_char_width'] = self.vte.get_char_width() data['old_allocation'] = self.vte.get_allocation() - data['old_padding'] = self.vte.get_padding() data['old_columns'] = self.vte.get_column_count() data['old_rows'] = self.vte.get_row_count() data['old_parent'] = self.get_parent() @@ -1410,13 +1416,6 @@ new_columns = self.vte.get_column_count() new_rows = self.vte.get_row_count() new_font = self.vte.get_font() - new_allocation = self.vte.get_allocation() - - old_alloc = {'x': old_data['old_allocation'].width - \ - old_data['old_padding'][0], - 'y': old_data['old_allocation'].height - \ - old_data['old_padding'][1] - } dbg('Terminal::zoom_scale: Resized from %dx%d to %dx%d' % ( old_data['old_columns'], @@ -1429,11 +1428,10 @@ dbg('Terminal::zoom_scale: One axis unchanged, not scaling') return - old_area = old_data['old_columns'] * old_data['old_rows'] - new_area = new_columns * new_rows - area_factor = (new_area / old_area) / 2 + scale_factor = min ( (new_columns / old_data['old_columns'] * 0.97), + (new_rows / old_data['old_rows'] * 1.05) ) - new_size = int(old_data['old_font'].get_size() * area_factor) + new_size = int(old_data['old_font'].get_size() * scale_factor) if new_size == 0: err('refusing to set a zero sized font') return @@ -1444,7 +1442,6 @@
[docs] def is_zoomed(self): """Determine if we are a zoomed terminal""" prop = None - parent = self.get_parent() window = self.get_toplevel() try: diff --git a/doc/apidoc/_build/html/_modules/terminatorlib/util.html b/doc/apidoc/_build/html/_modules/terminatorlib/util.html index 369e09ac..3cb56e6c 100644 --- a/doc/apidoc/_build/html/_modules/terminatorlib/util.html +++ b/doc/apidoc/_build/html/_modules/terminatorlib/util.html @@ -252,13 +252,14 @@
[docs]def manual_lookup(): '''Choose the manual to open based on LANGUAGE''' prefix = os.path.join(os.sep, 'usr', 'share', 'doc', 'terminator') - languages = os.environ['LANGUAGE'].split(':') - for language in languages: - full_path = os.path.join(prefix, 'html_%s' % (language), 'index.html') - if os.path.isfile(full_path): - dbg('Found %s manual' % (language)) - return full_path - dbg('Couldn\'t find manual for %s language' % (language)) + if 'LANGUAGE' in os.environ: + languages = os.environ['LANGUAGE'].split(':') + for language in languages: + full_path = os.path.join(prefix, 'html_%s' % (language), 'index.html') + if os.path.isfile(full_path): + dbg('Found %s manual' % (language)) + return full_path + dbg('Couldn\'t find manual for %s language' % (language)) full_path = os.path.join(prefix, 'html', 'index.html') if os.path.isfile(full_path): diff --git a/doc/apidoc/_build/html/genindex.html b/doc/apidoc/_build/html/genindex.html index 60be266d..6ccf093c 100644 --- a/doc/apidoc/_build/html/genindex.html +++ b/doc/apidoc/_build/html/genindex.html @@ -3629,6 +3629,10 @@ +
psutil_cwd() (in module terminatorlib.cwd) +
+ +
PythonConsoleServer (class in terminatorlib.debugserver)
diff --git a/doc/apidoc/_build/html/objects.inv b/doc/apidoc/_build/html/objects.inv index 9268e64da2a6856b0b440e78af0c4c55c1681ff6..e23d0fd7d9ff54993f46a4fe0e1801c3b4bc8cce 100644 GIT binary patch delta 5878 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 MRFv@l135#e>c*gI7XSbN delta 5872 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
-_sectionmarker = <_sre.SRE_Pattern object at 0x8f8c8b0>
+_sectionmarker = <_sre.SRE_Pattern object at 0x9cb2d18>
@@ -561,12 +561,12 @@ displaying meaningful error messages.

-_triple_quote = {"'''": (<_sre.SRE_Pattern object at 0x42de2138>, <_sre.SRE_Pattern object at 0x42ab4e20>), '"""': (<_sre.SRE_Pattern object at 0x42de2250>, <_sre.SRE_Pattern object at 0x42ab4c20>)}
+_triple_quote = {"'''": (<_sre.SRE_Pattern object at 0x42e8a480>, <_sre.SRE_Pattern object at 0x42c34d20>), '"""': (<_sre.SRE_Pattern object at 0x42e8a138>, <_sre.SRE_Pattern object at 0x42e54020>)}
-_valueexp = <_sre.SRE_Pattern object at 0x8fef6f8>
+_valueexp = <_sre.SRE_Pattern object at 0x9c9e758>
@@ -1114,7 +1114,7 @@ value: object to be checked
-_list_arg = <_sre.SRE_Pattern object at 0x8f72290>
+_list_arg = <_sre.SRE_Pattern object at 0x9cc0830>
@@ -1124,12 +1124,12 @@ value: object to be checked
-_matchfinder = <_sre.SRE_Pattern object at 0x8f96278>
+_matchfinder = <_sre.SRE_Pattern object at 0x9cc2db8>
-_paramfinder = <_sre.SRE_Pattern object at 0x8ff51d0>
+_paramfinder = <_sre.SRE_Pattern object at 0x9cc1f08>
diff --git a/doc/apidoc/_build/html/terminatorlib.html b/doc/apidoc/_build/html/terminatorlib.html index 13317daf..72d1a478 100644 --- a/doc/apidoc/_build/html/terminatorlib.html +++ b/doc/apidoc/_build/html/terminatorlib.html @@ -905,6 +905,12 @@ more complex requirements

insert it into, e.g. /proc/%s/cwd

+
+
+terminatorlib.cwd.psutil_cwd(pid)[source]
+

Determine the cwd using psutil which also supports Darwin

+
+
terminatorlib.cwd.sunos_get_pid_cwd(pid)[source]
@@ -1464,7 +1470,7 @@ or None on failure.

-_dbus_class_table = {'dbus.service.Interface': {}, 'dbus.service.FallbackObject': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x4330cb8c>}}, 'dbus.service.Object': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x4330cb8c>}}, 'terminatorlib.ipc.DBusService': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x4330cb8c>}, 'net.tenshu.Terminator_0x3bcbf226': {'get_terminal_tab': <function get_terminal_tab at 0x4334448c>, 'terminal_hsplit': <function terminal_hsplit at 0x4334456c>, 'terminal_vsplit': <function terminal_vsplit at 0x43344534>, 'new_window': <function new_window at 0x433445dc>, 'get_terminals': <function get_terminals at 0x433444c4>, 'new_tab': <function new_tab at 0x433445a4>, 'get_terminal_tab_title': <function get_terminal_tab_title at 0x433446bc>}}}
+_dbus_class_table = {'dbus.service.Interface': {}, 'dbus.service.FallbackObject': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x43533534>}}, 'dbus.service.Object': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x43533534>}}, 'terminatorlib.ipc.DBusService': {'org.freedesktop.DBus.Introspectable': {'Introspect': <function Introspect at 0x43533534>}, 'net.tenshu.Terminator_0x3bcad31e': {'get_terminal_tab': <function get_terminal_tab at 0x436f1144>, 'terminal_hsplit': <function terminal_hsplit at 0x436f1064>, 'terminal_vsplit': <function terminal_vsplit at 0x436f109c>, 'new_window': <function new_window at 0x43519fb4>, 'get_terminals': <function get_terminals at 0x436f110c>, 'new_tab': <function new_tab at 0x436f102c>, 'get_terminal_tab_title': <function get_terminal_tab_title at 0x436f117c>}}}
diff --git a/doc/manual/_build/html/_sources/gettingstarted.txt b/doc/manual/_build/html/_sources/gettingstarted.txt index 43bb2d20..eaa3d83d 100644 --- a/doc/manual/_build/html/_sources/gettingstarted.txt +++ b/doc/manual/_build/html/_sources/gettingstarted.txt @@ -12,7 +12,7 @@ Getting Started =============== -This page is an introduction and tutorial, that will get you familiar +This page is an introduction and tutorial that will get you familiar with Terminator's features. Additional functional areas are explored in other pages, but at the end of this page you'll be getting a good idea of the power of Terminator. @@ -319,15 +319,19 @@ The above action results in the following: The other way to drag a terminal can be done from within the terminal with ``Ctrl``\ +\ ``right-click-drag``\ . With this method once you start the -grag, you *must* release the ``Ctrl`` key *before* releasing the +drag, you *must* release the ``Ctrl`` key *before* releasing the ``right-mouse-button``. If you do not the drag will cancel. You can drag between tabs by initiating a drag and hovering over the tab. -Terminator will switch to the tab under the cursor, and the terminal can be -dropped. +Terminator will switch to the tab under the cursor, you can then drag to the +desired position, and the terminal can be dropped. You can also drag between Terminator windows *provided the windows are part of the same process*. By default all windows will be part of the same process. +Windows will not be part of the same process if you deliberately turn off +the :ref:`DBus` interface with the :ref:`Preferences ` or the +:ref:`command-line-options` when starting Terminator up. :ref:`Layouts ` +are also currently isolated at a process level for technical reasons. .. _layout-shortcuts: diff --git a/doc/manual/_build/html/gettingstarted.html b/doc/manual/_build/html/gettingstarted.html index 6643d115..0d73645e 100644 --- a/doc/manual/_build/html/gettingstarted.html +++ b/doc/manual/_build/html/gettingstarted.html @@ -257,7 +257,7 @@ Because this is the symbol learner drivers use in the UK.

Getting Started

-

This page is an introduction and tutorial, that will get you familiar +

This page is an introduction and tutorial that will get you familiar with Terminator’s features. Additional functional areas are explored in other pages, but at the end of this page you’ll be getting a good idea of the power of Terminator.

@@ -604,13 +604,17 @@ an existing terminal.

_images/dragterminal_02.png

The other way to drag a terminal can be done from within the terminal with Ctrl+right-click-drag. With this method once you start the -grag, you must release the Ctrl key before releasing the +drag, you must release the Ctrl key before releasing the right-mouse-button. If you do not the drag will cancel.

You can drag between tabs by initiating a drag and hovering over the tab. -Terminator will switch to the tab under the cursor, and the terminal can be -dropped.

+Terminator will switch to the tab under the cursor, you can then drag to the +desired position, and the terminal can be dropped.

You can also drag between Terminator windows provided the windows are part -of the same process. By default all windows will be part of the same process.

+of the same process. By default all windows will be part of the same process. +Windows will not be part of the same process if you deliberately turn off +the DBus interface with the Preferences or the +Command line options when starting Terminator up. Layouts +are also currently isolated at a process level for technical reasons.

Using the keyboard

diff --git a/doc/manual/_build/html/searchindex.js b/doc/manual/_build/html/searchindex.js index 05639479..85f79443 100644 --- a/doc/manual/_build/html/searchindex.js +++ b/doc/manual/_build/html/searchindex.js @@ -1 +1 @@ -Search.setIndex({envversion:46,filenames:["advancedusage","faq","gettinginvolved","gettingstarted","grouping","history","index","layouts","licensing","plugins","preferences"],objects:{},objnames:{},objtypes:{},terms:{"0076c9":10,"0m10":1,"0m11":1,"0m7":1,"27t":2,"2x2":4,"80x24":10,"__class__":9,"__init__":9,"__name__":9,"abstract":2,"break":9,"case":[2,3,4,6,9],"class":[0,2,9],"default":[0,2,3,4,7,9,10],"export":9,"final":[0,4],"function":[0,2,3,4,10],"import":[0,2,9],"long":[2,7,9,10],"new":[0,1,2,3,4,5,7,8,9,10],"return":[2,4,7,9],"super":[2,3,4],"switch":[2,3,9,10],"true":[1,10],"try":[0,1,2,3,10],"var":3,"while":[2,3,9],aaaaaa:10,abandon:3,abil:[1,2],abl:2,abourget:9,about:[0,1,2,3,6,7,9],abov:[2,3,4,9,10],absolut:9,acceler:10,accept:[4,9],access:[2,3,10],accid:3,accord:1,aceller:2,achiev:3,across:[4,10],act:[3,4,10],action:[0,1],activ:[0,2,4,7],activitywatch:9,actual:[2,3,9,10],add:[2,3,7,9,10],addit:[2,3,4,9,10],addition:[3,9],address:3,adjust:[3,10],advantag:9,adventur:2,advis:0,affect:[3,4],afraid:2,after:[1,2,7,9,10],again:[2,3,4,7,9,10],ahead:4,ahem:2,aid:[0,10],aim:1,alesegdia:9,alia:10,all:[0,1,2,3,4,5,7,9,10],allow:[0,2,3,4,9,10],almost:[3,9],along:[2,4,9],alphabet:[4,7],alreadi:[0,3,4,7,10],also:[0,1,2,3,4,6,9,10],alt:[1,3,4,7],altern:[0,9,10],altgr:4,although:[2,3,9],alwai:[1,2,4,6,7,10],ambienc:10,american:2,americanis:2,among:3,amount:[0,9],ancestor:2,ani:[0,2,3,4,8,9,10],annoi:[0,7],announc:[3,9],anoth:[0,1,3,4,9],answer:9,anti:[3,10],anyth:[2,3],anywai:2,apach:9,apart:[3,7],apidoc:2,appar:[4,9],appear:[0,1,2,3,4,9],append:9,appind:2,applaunch:9,appli:[0,2,8,9],applic:0,appreci:[1,2],approach:2,appropri:2,approx:1,april:9,apt:2,arab:2,arbitrari:6,arbritrari:2,arch:2,architectur:[2,9],area:[0,3,10],aren:3,arg:2,argument:[0,4,10],arnaudh:9,around:[0,2],arrang:[3,6,7],arrow:[3,7],articl:2,artist:2,ascii:10,aspect:[0,2,3,9],ass:2,assign:[3,4],assist:2,assum:8,attempt:[0,2,8,9,10],attent:9,audibl:10,august:2,author:[5,9],autoclean:[2,4],autodoc:2,autom:10,automat:[9,10],avail:[2,3,8,9,10],avoid:3,awai:2,awar:[2,9],awesom:2,back:[0,1,2,3,9,10],background:[2,4],backspac:10,backup:0,bag:[0,2],balanc:3,bar:[2,3,10],bare:10,base:[2,9],bash:[1,2,10],basi:3,basic:[1,3,4],bat:2,bazaar:2,beam:10,bear:10,becam:9,becaus:[0,1,2,3,4,9],becom:[2,4,10],been:[2,3,4,9,10],beep:10,befor:[0,1,2,3,9,10],began:10,begin:[2,3,6,7],behav:2,behaviour:[0,3,7],bell:2,below:[3,7,9,10],besid:3,best:2,better:[1,2,3],between:[0,1,2,3,5,7,9,10],bias:1,big:[2,9],bigger:2,bind:[1,2,3],bit:[0,1,2,3,9,10],bitbucket:9,bitmap:10,bksp:10,black:10,blend:10,blink:10,blob:9,block:[2,10],blogg:2,blue:[3,4],boddi:[5,8,9],bold:10,boldli:2,bolt:9,border:[0,1,10],borderless:0,borg:2,both:[2,3],bottom:[3,10],bound:2,box:[3,4,10],branch:[2,9],brave:2,brazilian:2,brief:[3,7],briefli:10,bright:10,bring:9,british:2,broadcast:[2,3],broken:[2,10],brought:2,brows:2,browser:9,bsd:8,bubbl:2,buffer:1,buggi:10,bugzilla:9,build:[2,4],built:[3,9,10],bulb:10,button:[2,3,4,7,9,10],c0bebf:10,c80003:10,cach:1,call:[0,2,9,10],callback:[2,9],callto:3,came:2,camillo:9,can:[0,1,2,3,4,7,8,9,10],cancel:3,cannot:[0,3,4],canon:2,capabl:[2,9],capit:9,care:[0,2,4],casual:6,cat:1,catalan:2,caus:[0,2,4,10],center:2,central:10,cern:2,certain:[1,9],chanc:[2,9,10],chang:[0,2],charact:[4,10],check:[2,9,10],checkout:2,chew:2,child:3,children:[2,3],choffe:9,choos:10,chosen:9,chri:9,churn:2,clariti:0,classnam:0,claus:8,clear:[3,6,9,10],clearli:2,clever:9,click:[1,2],cliff:2,clipboard:[3,9],clisnip:9,clockwis:3,clone:9,clone_sess:9,close:[1,2,3,4,10],close_button_on_tab:2,cluster:9,cluster_connect:9,clusterm:[2,10],clutter:[2,3],cockl:2,code:[1,2,4,7,8],codehau:9,cohes:2,cold:1,collect:[3,10],color:9,colour:[3,4,9],column:10,com:[2,9],combin:[9,10],combo:2,come:[2,10],comic:9,comma:0,comment:[2,9],common:[1,9],commonli:9,commun:0,compar:[0,1,2],compil:[1,2,9],complain:2,complet:[1,2,3,9],complex:[6,9],compon:[2,10],compos:4,composit:10,configobj:[2,8,9],configur:[0,1,2,3,7,9,10],confirm:2,confus:[2,6],connect:[0,9],consequ:2,consid:[3,4,9,10],consist:[4,10],consol:[0,9,10],constantli:9,contain:[0,2,9],content:[6,9],context:[0,2],contrast:2,contribut:[2,5],control:[0,10],convert:[3,9],convinc:3,coordin:2,copi:[2,3,4,9,10],cori:[2,8],correct:[2,5],cosmet:3,could:[0,1,2,3,4,5,7,9],counter:[0,2],coupl:[1,2],cours:[0,1,3],cover:[0,3,4,10],cranni:2,crash:10,crazi:2,creat:[0,2,3,4,6,7,8],creation:5,creator:9,ctr:2,ctrl:[2,3,4,9,10],cultur:6,current:[0,2],cursor:3,custom_command:9,customcommandsmenu:9,customis:[0,7,9],cycl:3,dai:[0,1],data:[0,9,10],date:5,dave:8,deal:[0,2],dealt:2,debian:9,debug_class:0,debug_method:0,decis:9,decreas:3,dedic:0,deeper:2,def:9,defer:2,deficit:1,defin:[3,4,10],definit:[5,9],del:10,delet:[9,10],deletemeconfig:1,deliber:3,depend:[0,2,3,9,10],deprec:2,deriv:9,describ:[3,4,10],descript:[3,4],design:[1,2,9],desir:10,desktop:10,destruct:4,detail:[0,4,9,10],detect:[2,7,9],determin:[0,10],deutsch:2,dev:[2,5],devel:2,dialect:2,dialog:[9,10],dict:9,did:1,didn:1,diff:2,differ:[0,1,2,3,4,8,9,10],dig:2,dim:10,dimens:[3,10],dir:0,directli:[1,7,9],directori:[0,2,7,10],disabl:[0,1,9,10],disappear:[1,3,9,10],discard:10,discov:2,discuss:9,disk:[9,10],displai:[0,2,10],distinct:7,distinguish:7,distort:2,distract:3,distribut:[2,3,8,9],divid:3,document:[2,4],doe:[0,2,3,4,9,10],doesn:[2,10],domain:3,don:[1,2,3,5,9,10],done:[1,2,3,7,9,10],dotfil:9,doubl:[3,7,10],down:[1,2,3,7,9],dozen:3,dpm:2,dr1:9,drag:[1,2],draw:7,drawn:10,drive:2,drop:2,drop_cach:1,due:[1,2,3,10],dump:[0,9],dump_to_fil:9,dumptofil:9,duplic:[2,4],dvc:2,dynam:[2,10],each:[1,3,4,7,9,10],earli:4,earlier:9,eas:3,easi:10,easier:[1,2],easili:0,echo:1,edg:2,edit:[0,2,3,4,7,9],editor:[5,6,9],editor_plugin:9,editor_termin:9,effect:[3,10],effici:1,effort:2,egmont:2,either:[1,2,4,7,10],element:2,elimin:[2,3],els:2,elsewher:[2,9,10],empti:[1,10],emul:6,en_gb:2,en_u:2,enabl:[0,3,4,9,10],encod:3,encount:2,end:[3,9,10],endeavour:2,enforc:9,english:2,enhanc:2,enough:[2,3],enter:[7,9],entir:[2,9],entitl:6,entri:[3,4,7,9,10],enumer:3,environ:[0,2],epsilon:4,equal:[3,10],equalis:2,esc:10,escap:10,especi:2,etc:[0,2,6,9],etho:2,evalu:9,even:[0,1,2,3,4,7,10],evenli:3,event:9,eventu:2,ever:[1,10],everi:[1,9],everyth:2,exact:[1,9],exactli:[3,10],examin:9,exampl:[2,3,9],excel:9,except:3,execut:[0,9,10],exist:[1,2,3,9,10],exit:[0,1,2,4,10],expand:[2,9],expect:9,experiment:[4,10],explain:[2,10],explan:0,explicitli:[8,10],explor:[0,1,2,3],expos:9,exposur:2,express:9,extend:3,extens:[1,2,10],extra:[0,1],extract:9,extrem:3,eyesight:4,f11:3,face:2,facil:0,facilit:0,fact:[1,3],factori:1,fail:0,fairli:[2,3,9],fake:[2,6,10],fall:[2,8],fals:0,familiar:[3,10],famou:2,far:[2,4,9],fast:[1,2],faster:1,featur:[0,1,2,3,4,6,9,10],fedora:2,feel:2,few:[1,2,3,10],ffffff:10,field:4,fifth:3,figur:[2,3,9],fill:0,find:[1,2,3,9,10],findal:9,finish:2,first:[0,1,2,3,4,7,9,10],fit:[2,10],five:3,fix:[1,2,3,4,10],fixabl:2,fixm:2,flag:[2,10],flash:10,flexibl:[3,10],flick:1,flip:2,flush:9,fly:6,focu:[1,2,3,4,10],focus:[3,10],focuss:[2,10],folder:[2,9],follow:[0,3,4,6,9,10],font:[2,3,10],footprint:10,forc:[2,10],forcedicon:0,forcedtitl:0,fork:[2,9],form:[0,3],formal:9,format:[2,3,9],forth:3,forward:3,found:[0,3],four:[9,10],fourth:[0,3],frame:[2,10],framework:9,frankli:[1,2],free:1,freedesktop:0,from:[0,1,2,3,4],frustrat:1,ftp:3,ftphostnam:3,full:[2,10],fulli:[1,2],fullscreen:[0,3,7,10],fun:3,fundament:2,further:[2,3],futur:[2,3,7],gdk3:2,geometri:[0,10],german:4,get:[0,1],gir:2,git:9,git_plugin:9,git_termin:9,github:[2,8,9],give:[0,1,2,3,9,10],given:[0,2,4,7,9,10],glade:2,glamor:2,glanc:[4,9],glimps:7,global:[2,3,4,6],gnome:[1,2,6,10],gnu:[8,9],goal:9,gobject:2,gobjectintrospect:2,gone:4,good:[2,3,4,9],googl:9,googler:9,got:2,gotta:2,gpl:[8,9],grab:[0,2,3],gracefulli:2,grag:3,grandchildren:3,grandpar:3,gratefultoni:9,great:[0,2,9],greek:4,green:3,grei:[4,10],grid:[4,6],group:[0,2,3],grow:3,gtk2:[1,2,10],gtk3:1,gtk:[2,9],guess:[3,9,10],gui:[6,9],guid:[6,9,10],gum:2,h323:3,hack:2,had:[2,9],half:[2,3],hand:[1,3,4,9],handi:3,handl:[2,3,9,10],handler:3,handler_nam:9,hang:1,happen:[2,3,10],happi:2,hasn:9,hastebin:9,have:[0,1,2,3,4,6,7,8,9,10],haven:[2,9],head:2,header:2,heart:2,heavi:[0,9],hello:2,helluva:1,help:[0,2,3,4,7,9,10],here:[0,1,2,3,4,7,8,9,10],hidden:[0,1,2,3,10],hide:[0,1,2,3,9,10],high:2,highcontrast:2,higher:10,highli:10,highlight:[0,2,3,7,10],hint:10,hit:2,hold:10,home:[0,10],homogen:10,homogeneous_tabbar:2,hook:9,hope:[6,9],horizont:[0,3,10],horrif:8,host:[3,9],hostwatch:9,houston:2,hover:[3,9],how:0,howev:3,hsplit:0,html:[2,3],html_en:2,html_en_gb:2,http:[2,3,9],huge:9,human:0,humour:6,hundr:1,hungri:10,hush_period:9,i18n:2,iambibha:9,ibu:4,icon:0,idea:[1,2,3,9],ideal:5,ident:[1,3,8],idle_add:2,ignor:[2,9],ilgarm:9,imag:[0,2,4,10],immedi:[1,2,10],implement:[9,10],imposs:[2,3],impract:3,improv:[0,1],inactive_period:9,inactivitywatch:9,inbuilt:0,includ:[0,2,3,4,6,8],incomplet:2,incorrect:2,increas:3,independ:4,index:[2,3],indic:4,infinit:10,info:[2,9],inform:[0,2,9,10],ing:1,inherit:[2,4,9],inhibit:2,initi:[2,3,5,9,10],input:2,insecur:3,insert:2,insid:[0,9],insofar:8,instal:[2,6],instanc:[0,1,2,3],instead:[0,2,3,4,10],instruct:2,insurmount:2,intend:4,intent:2,inter:0,interact:[0,1,9],interest:[0,2],interfac:[1,2,3],intern:[0,10],interpret:1,introduct:3,introspect:2,invalu:4,investig:4,invis:[2,10],ipc:0,isn:[1,2],issu:[1,2,3,9,10],item:[0,2],iter:1,itself:[3,9],jazz:9,job:2,joe:2,johnsanchezc:9,join:2,jone:9,ju1iu:9,juli:2,julien:9,jump:2,junk:9,just:[0,1,2,3,4,6,7,9,10],kbyte:1,keep:[3,4,7,10],kei:[3,4,10],kept:[3,5],kernel:9,keybind:[2,6],keyboard:2,keypress:[1,10],keystrok:[4,10],kick:2,kill:[1,4],kind:2,kmoppel:9,knew:9,knock:2,know:[2,3,9,10],knowledg:9,known:[1,4],kobling:2,konsol:6,kontro:[2,8],label:[2,10],lack:2,lag:5,languag:[2,4],larg:[1,2,3],last:[1,2,3,4,9],lastli:3,later:[2,3],latest:2,launch:[0,1,2,3,7,9,10],launcher:[0,2,6],launcherapi:2,launchpad:2,launchpad_bug:9,launchpadbugurlhandl:9,layoutmanag:9,lazka:2,learn:2,least:6,left:[2,3,4,10],leftmost:4,less:2,let:[0,2,3,4,6,9,10],letter:[2,4],liber:9,librari:[8,10],libun:2,libvt:2,licenc:8,licens:6,life:2,light:[2,10],lighter:1,limit:[0,2,3],limt:2,link:[2,3,5,9,10],list:[0,1,2,3,4,6,7,9,10],listen:0,lit:2,littl:[1,2,3,6,9],load:[1,2,3,7,9],local:[2,9],localhost:[0,3],locat:[3,9,10],log:[3,9],logic:[2,10],login:[3,10],longer:[2,10],look:[0,2,3,4,6,9],loop:10,loquaci:2,lose:[1,2,3,7,10],lot:[0,1,2,3,6],love:9,lower:[2,4],machin:[3,4,9],made:[2,3,4,9],mai:[0,1,2,3,4,9,10],mail:3,mailto:3,maintain:[2,8,9],mainten:2,major:2,make:0,man:[0,8],manger:3,mani:[0,2,3,6,9,10],manual:0,manual_xxxx:2,mariolameira:9,mark:2,master:[0,2,9],match:[3,9],matur:9,maximis:[0,2,3,4,7,10],mayb:[2,3],mbyte:1,mchelem:9,mean:[2,4,7,10],meant:3,meantim:0,mechan:9,median:1,mega:3,mem:1,mention:[0,2,3,4,9],menu:[0,2],menubar:10,menuitem:9,merg:2,messag:0,metaphor:6,method:[0,1,2,3,9,10],middl:[1,10],might:[2,3,4],mikeadkison:9,mild:10,mileston:2,millisecond:9,mind:[1,2,10],mindmaz:2,mine:3,minim:[0,3],minimum:10,minor:5,minu:[2,3],misbehav:3,misc:8,misnam:9,miss:[2,5],mit:8,mix:2,mode:[2,4,9,10],model:10,modifi:[3,4],mojo:9,moment:[1,10],monei:6,monoglot:2,more:[0,1,2,3,4,6,7,9,10],most:[3,6,9],mostli:2,mous:[2,3,4,7,9,10],mouser:3,move:[1,2,3,7,9,10],movement:3,movi:2,mozilla:9,much:[1,2,3,10],multipl:[0,2,3],must:[1,2,3,9,10],my_logg:9,myconfig:9,myfirstplugin:9,mysteri:[2,3,10],nalkaya:9,name:[0,2,3,4,7,9,10],namespac:9,nasa:2,nativ:2,natur:[3,10],neat:2,necessari:[0,3],need:[0,1,2,3,4,7,9,10],net:[2,9],never:[2,3,9,10],newer:[2,4,10],next:2,nicoulaud:9,nightmar:2,nntp:3,node:2,nois:10,non:[2,8],none:[4,6,9,10],nook:2,normal:[0,1,10],note:[2,3,5,8,10],noth:10,notic:[1,2],notif:9,notion:0,now:[2,3,4,9],nuke:2,number:[0,2],numer:0,nut:9,object:9,oblig:1,obviou:[3,6,9],occur:10,off:[0,1,2,3,4,10],offend:2,often:[1,3,6],old:2,on_vte_size_alloc:2,onc:[1,2,3,4,9,10],onli:[0,1,2,3,4,9,10],onto:10,open:[0,1,2,3,7,9,10],open_any_file_plugin:9,opensus:2,opinion:1,oppos:10,order:[2,3,6,7,9],org:[0,2,3,8,9],organis:4,origin:[2,3,9,10],other:0,otherwis:9,our:[2,10],out:[1,2,3,4,9],output:[0,2,9,10],outsid:9,outstand:[2,3],over:[1,2,3,9,10],overdu:2,overhead:1,overlai:2,overrid:10,overridden:10,own:[2,3,6],packag:[2,9],pad:3,page:[0,2,3,8,9],pai:9,paid:6,pane:10,panel:10,papajok:9,paramet:10,parent:[0,2,3],part:[0,3,4,9,10],parti:6,partial:10,particl:2,particular:[2,9],particularli:2,pass:[0,9,10],past:[3,4,10],patch:2,path:[0,3,10],pattern:[3,9,10],peev:2,peopl:[0,1,2],per:[2,3,7,10],perceiv:[0,9],perfect:1,perhap:2,period:9,permiss:9,person:[1,2],pet:2,pgdn:3,pgi:2,pgularski:9,pgup:3,phi:4,pick:[2,10],piec:[2,8],pigo:2,pin:[2,7],pinpoint:1,pip:2,pixel:10,place:[1,3,4,10],plain:2,pleas:[2,8,9,10],plenti:2,plu:[3,4],plugin_get_config:9,plugin_set_config:9,point:[1,2,9],pointer:[3,10],poke:9,polici:3,polish:2,polyglot:2,pop:[2,6],popup:[4,9],popup_menu:2,port:[0,1],portuges:2,posit:[0,1,2,3,7,10],poss:2,possibl:[1,2,3,9,10],post:9,postcard:9,poster:2,potenti:[0,1,4,7],power:[2,3,9],ppa:2,practic:1,precaut:9,precis:9,predefin:10,pref:2,prefer:[0,1,2,3,4,6,7,9],prefix:9,prefseditor:2,preliminari:9,preselect:2,presenc:4,present:[1,3,9],press:[2,7,10],pretti:9,prev:2,prevent:[0,3],preview:3,previou:[3,10],previous:[2,9,10],primari:[3,10],principl:2,print:0,prioriti:[2,10],probabl:[0,1,2,3,9],problem:[0,4,6,9,10],problemat:1,proc:1,proce:4,process:[0,1,2,3,5,9],product:[0,1],profil:[0,1,2],program:[0,3,10],progress:[1,2,9],project:[2,9,10],promis:2,prompt:[0,7],properli:3,properti:0,proport:10,provid:[2,3,4,8],psutil:2,pt_br:2,pun:4,purpos:[1,2,4],put:[2,6,10],pygobject:2,pygtk:[2,9],python2:2,python3:2,python:0,python_exampl:2,queri:2,quick:[2,4,6,9],quickexit:1,quickli:[4,7],quicklist:2,quiet:9,quirk:10,quit:[0,1,2,9,10],r1598:5,r1621:5,rail:9,raiser:2,random:6,randomli:4,rang:10,rather:[0,1,2,9,10],reach:[2,3,9],read:[2,3,8,10],readabl:0,readthedoc:2,real:[1,2,6],realis:4,realist:2,realli:[1,2,9],reappear:4,rearrang:0,reason:[9,10],rebal:[2,3],rebalanc:3,receiv:[2,3,4,9,10],recommend:[0,9],record:[2,10],recov:1,recreat:1,rectangl:10,red:[3,4],reduc:[2,6],redund:9,ref:2,refer:[4,6,9],refresh:2,refund:6,regard:9,region:2,regist:2,regular:9,reimplement:2,rel:2,relat:[0,3,4,9],releas:[2,3,5,9],releg:2,reli:9,remain:[2,4,10],rememb:[0,2],remov:[2,4,10],renam:[2,3],repeat:[3,4],replac:[2,4,10],replic:2,report:9,reposit:9,repres:[3,7],reproduc:[2,9],reproduct:2,request:0,requir:[0,2,10],resembl:3,reset:2,resiz:[3,10],resolv:2,resourc:[2,10],respons:9,rest:0,restart:[1,10],restor:[2,3,9],result:[0,1,2,3,9],revert:10,review:2,revis:2,rewritten:9,right:[0,2,3,4,7,9,10],risk:9,role:0,room:2,root:[1,2,9],rotat:3,rough:2,row:2,rtd:2,rudimentari:2,rule:0,run:[0,1,2,4,7,9,10],runtim:9,sai:[2,4,9],said:8,same:[0,1,2,3,4,7,9,10],save:[1,2,3,6,7,9,10],saver:4,scale:[3,10],scheme:10,scope:[0,9],screen:[0,2,9,10],screenshot:[4,9],script:0,search:0,searchplugin:9,sec:1,second:[0,1,2,3,4,9,10],section:[0,1,3,7,9,10],secur:9,see:[0,2,3,4,8,9,10],seem:[0,2,3,9,10],seemingli:2,seen:[0,2,3,7,9],select:[0,2,3,4,7,9,10],self:[2,9],send:[2,4],sens:[2,3,4,6,9,10],sent:9,separ:[0,3,9,10],seper:[2,10],sequenc:10,sequenti:3,seri:9,seriou:2,serv:2,server:[0,2,3,10],session:[2,9,10],set:[0,1,2],setup:[2,6],sever:[4,9],shade:[3,10],shape:10,share:[1,9],shepherd:2,shift:[2,3,4],shini:9,ship:9,shortcut:[1,2,3,4,6,7,10],should:[0,1,2,3,5,9,10],show:[0,1,2,3,4,9,10],show_titlebar:9,shown:[3,4,7,9],shrink:10,sibl:[2,3],side:[2,10],sidebar:[2,10],sie:2,signal:2,silenc:9,silent:9,similar:[3,9],simplest:[0,3,6,9],simpli:[0,1,3,4,10],simplifi:9,simultan:6,sinan:9,sinc:[2,10],singl:[0,1,2,3,4,7,10],singleton:2,sip:3,site:9,six:10,size:[0,1,2,3,7,10],skip:4,slide:1,slightli:4,slower:1,slowli:2,small:[2,9,10],smaller:9,smidgen:1,smooth:10,smorgasbord:2,snap:2,snider:8,snip2cod:9,snippet:9,softwar:9,sole:1,solid:10,some:[0,1,2,3,4,5,7,9,10],somebasepluginclass:9,somehow:2,someon:2,someth:[1,2,3,4,9],sometim:[2,3,6],sort:[2,9],sourc:[2,8,9],space:[2,3,9],sparkstar:9,spawn:2,speak:[2,3],speaker:2,specif:[0,2,8,9],specifi:[0,9,10],speech:2,speed:4,spell:2,spend:7,spent:3,sphinx:2,sphinx_rtd_them:2,split:[0,2,3,4,7,9,10],splitter:2,spot:[2,4],sprechen:2,ssh:9,ssh_menu:9,sshermin:9,stabl:2,stai:[1,4],stamina:7,stamp:9,stand:2,standard:[0,3,10],start:[0,1],starter:2,startup:[0,1,10],state:[1,7,8,9,10],statement:0,statu:[2,4,10],step:[2,10],stephen:5,sterl:2,steve:[3,8,9],still:[1,2,9,10],stock_:2,stop:[9,10],storag:9,store:[0,2,7,9],strang:[1,3,6],strictli:[0,2,3],string:[3,9],strip:[3,9,10],strongli:0,structur:[0,9,10],struggl:2,stuff:2,sub:[0,2,3,9,10],subclass:2,submit:2,subsequ:[3,10],substitut:2,sudo:2,suffici:9,suggest:[2,4,9],suit:3,suitabl:3,support:[2,9],sure:[2,3,9,10],surpris:1,swap:1,swatch:10,sync:1,syslog:3,system:[0,2,9,10],tab:[0,2,3,4,6,7,9,10],tabl:10,tailor:3,take:[1,2,3,6,9,10],taken:[0,4,10],talk:6,tall:10,target:[2,3],task:[0,2,3],taskbar:[1,3,10],tbd:[3,4],team:2,techqu:2,tell:[2,7],telnet:[0,3],temporarili:[2,3,4],tend:6,tenscoresplugin:9,term:[2,3,8],termin:0,terminal_menu:9,terminal_tab:0,terminal_tab_titl:0,terminalexport:9,terminator_bugzilla_handl:9,terminator_config:0,terminator_plugin:9,terminator_uuid:0,terminatorhostwatch:9,terminatorlib:[0,2,9],terminatorplugin:9,terminolog:4,ters:2,text:[2,3,9,10],than:[1,2,3,4,7,9,10],theer108:9,thei:[0,2,3,4,5,8,9,10],them:[1,2,3,4,7,9,10],theme:[2,8,9,10],theori:[9,10],therefor:9,therein:9,thi:[0,1,2,3,4,5,6,7,8,9,10],thing:[1,2,3,4,5,7,9],think:[1,2,9],third:[3,6],those:[2,3,4,10],though:[0,4],thought:2,three:[2,3,4,10],through:[0,2,3,9,10],tile:3,till:2,time:[0,1,2,3,4,7,9,10],tint:10,tip:7,titl:[0,1,2],titlebar:[2,3,4,7,9],todai:3,toggl:[1,2,3,4,10],told:9,too:[2,3,4,9],tool:[2,7,9],toolbar:3,top:[1,2,3,7,9,10],topic:0,total:1,touch:9,tradit:[3,10],train:3,transpar:10,treat:9,tree:[2,10],tri:2,triag:2,tricki:2,trigger:[3,9],trio:3,truli:8,trunk:2,trusti:2,truth:10,tune:3,turn:[0,2,3,4,9,10],tutori:[2,3,9],twice:0,two:[0,2,3,4,9,10],type:[2,3,4,6,9,10],typic:0,ubuntu:[2,10],ultim:9,ummmm:[9,10],uncertainti:9,uncheck:3,uncontrol:10,under:[0,2,3,8,9],underli:[9,10],underlin:[9,10],underneath:10,understand:[2,3,4,9,10],understood:3,unexplain:10,unfocus:10,unfortun:2,ungroup:[2,4],unhid:[2,3],unicod:10,uninform:1,uniqu:[7,9],uniti:2,unless:[0,9],unlik:3,unnecessari:2,unsur:9,until:[2,3,4,9,10],upload:9,upon:0,upper:4,urgent:10,uri:9,url:3,url_handl:9,urlhandl:9,usabl:2,user:[2,3,9,10],usr:[2,9],usual:[2,4,9,10],utf:[3,10],util:[0,10],uuid:[0,7],vagu:0,valencia:2,valid:[0,2,9],valu:[2,7,9,10],valv:2,vanish:10,vari:[3,10],variabl:[0,2],varianc:1,variant:9,variou:0,verg:2,veri:[1,2,10],verifi:2,version:[0,1,2,4,10],vertic:[0,3,10],via:6,video:2,view:[1,2,3],virtual:10,visibl:[1,2,3,7,10],visible_bel:2,visual:[2,4,10],voidspac:8,voip:3,vsplit:0,vte0:2,vte:[1,2,3,4,10],wai:0,wait:[2,7,9],walk:2,want:[2,9,10],warm:2,warn:2,warrant:3,wast:3,watch_interv:9,webcal:3,weird:2,welcom:[1,2,5],well:[3,4,7,10],went:9,were:[1,2,3,4,9],what:[2,3],whatev:[1,2,9,10],wheeldown:3,wheelup:3,when:[0,1,2,3,4,7,9,10],where:[1,2,3,4,7,9,10],whether:[4,10],which:[0,1,2,3,4,7,8,9,10],whichev:[0,1],white:9,who:2,whole:2,wholli:8,wide:10,wider:2,widget:[1,2,10],width:10,wiki:2,wise:1,wish:[3,9,10],wishlist:2,within:[0,2,3,7,10],without:[0,2,4,9],wm_class:0,wm_window_rol:0,wonder:10,word:[6,10],word_char:2,work:0,workdir:2,workspac:[1,2,7,10],world:2,worri:1,worst:9,would:[0,1,2,3,4,9],wouldn:0,wow:9,wrangl:2,wrap:3,wrapper:0,written:[2,8,9],www:[2,3,9],wwwhostnam:3,xterm:[1,6],xxxx:2,yeah:[1,2],yet:[2,9],you:[0,1,2,3,4,6,7,9,10],your:[0,1,2,3,4,6,7,8],yournam:9,yourself:3,yup:9,zero:3,zoom:2},titles:["Advanced Usage","Frequently Asked Questions","Getting involved","Getting Started","The Grouping Menu","Document history","Welcome to Terminator’s documentation!","Layouts and the Layout Launcher","Licensing","Plugins","Preferences Window"],titleterms:{abl:3,about:10,action:2,activ:9,advanc:0,api:2,appear:10,applic:2,apt:9,around:3,artwork:2,ask:1,background:10,bad:1,basic:9,behaviour:10,bell:10,bloat:1,broadcast:4,buffer:3,bug:[2,9],chang:3,click:3,code:9,colour:10,command:[0,9,10],compat:10,config:0,context:[3,9],creat:9,current:3,cursor:10,custom:[0,9],dbu:0,debug:0,develop:2,doc:2,document:[5,6],drag:3,drop:3,dumb:1,encod:10,file:0,foreground:10,frequent:1,from:6,gener:[0,10],get:[2,3],global:10,group:4,gtk3:2,handler:9,histori:5,how:1,icon:2,improv:2,inact:9,includ:9,input:4,insert:[3,4],instal:9,involv:2,item:[3,9],keybind:10,keyboard:3,launcher:7,launchpad:9,layout:[0,3,7,10],licens:8,like:1,line:0,logger:9,main:2,make:1,manag:0,manipul:4,manual:2,maven:9,memori:1,menu:[3,4,9],multipl:4,navig:3,next:3,number:[3,4],option:0,other:2,own:9,palett:10,parti:9,perform:1,plugin:[2,9,10],port:2,prefer:10,prev:3,profil:[3,10],python:1,quak:1,question:1,remotin:0,reset:3,ridicul:6,scroll:10,scrollback:3,scrollbar:3,search:3,sensibl:1,set:3,shell:0,shot:[2,9],simpl:6,slow:1,splitter:3,start:3,style:1,suck:1,summari:1,termin:[1,2,3,4,6,9,10],test:[2,9],third:9,titl:3,titlebar:10,translat:2,updat:2,url:9,usag:0,wai:1,watch:9,welcom:6,what:6,why:1,window:[0,10],work:1,wrap:9,write:1,your:9,zoom:3}}) \ No newline at end of file +Search.setIndex({envversion:46,filenames:["advancedusage","faq","gettinginvolved","gettingstarted","grouping","history","index","layouts","licensing","plugins","preferences"],objects:{},objnames:{},objtypes:{},terms:{"0076c9":10,"0m10":1,"0m11":1,"0m7":1,"27t":2,"2x2":4,"80x24":10,"__class__":9,"__init__":9,"__name__":9,"abstract":2,"break":9,"case":[2,3,4,6,9],"class":[0,2,9],"default":[0,2,3,4,7,9,10],"export":9,"final":[0,4],"function":[0,2,3,4,10],"import":[0,2,9],"long":[2,7,9,10],"new":[0,1,2,3,4,5,7,8,9,10],"return":[2,4,7,9],"super":[2,3,4],"switch":[2,3,9,10],"true":[1,10],"try":[0,1,2,3,10],"var":3,"while":[2,3,9],aaaaaa:10,abandon:3,abil:[1,2],abl:2,abourget:9,about:[0,1,2,7,9],abov:[2,3,4,9,10],absolut:9,acceler:10,accept:[4,9],access:[2,3,10],accid:3,accord:1,aceller:2,achiev:3,across:[4,10],act:[3,4,10],action:[0,1],activ:[0,2,4,7],activitywatch:9,actual:[2,3,9,10],add:[2,3,7,9,10],addit:[2,3,4,9,10],addition:[3,9],address:3,adjust:[3,10],advantag:9,adventur:2,advis:0,affect:[3,4],afraid:2,after:[1,2,7,9,10],again:[2,3,4,7,9,10],ahead:4,ahem:2,aid:[0,10],aim:1,alesegdia:9,alia:10,all:[0,1,2,3,4,5,7,9,10],allow:[0,2,3,4,9,10],almost:[3,9],along:[2,4,9],alphabet:[4,7],alreadi:[0,3,4,7,10],also:[0,1,2,3,4,6,9,10],alt:[1,3,4,7],altern:[0,9,10],altgr:4,although:[2,3,9],alwai:[1,2,4,6,7,10],ambienc:10,american:2,americanis:2,among:3,amount:[0,9],ancestor:2,ani:[0,2,3,4,8,9,10],annoi:[0,7],announc:[3,9],anoth:[0,1,3,4,9],answer:9,anti:[3,10],anyth:[2,3],anywai:2,apach:9,apart:[3,7],apidoc:2,appar:[4,9],appear:[0,1,2,4,9],append:9,appind:2,applaunch:9,appli:[0,2,8,9],applic:0,appreci:[1,2],approach:2,appropri:2,approx:1,april:9,apt:2,arab:2,arbitrari:6,arbritrari:2,arch:2,architectur:[2,9],area:[0,3,10],aren:3,arg:2,argument:[0,4,10],arnaudh:9,around:[0,2],arrang:[3,6,7],arrow:[3,7],articl:2,artist:2,ascii:10,aspect:[0,2,3,9],ass:2,assign:[3,4],assist:2,assum:8,attempt:[0,2,8,9,10],attent:9,audibl:10,august:2,author:[5,9],autoclean:[2,4],autodoc:2,autom:10,automat:[9,10],avail:[2,3,8,9,10],avoid:3,awai:2,awar:[2,9],awesom:2,back:[0,1,2,3,9,10],background:[2,4],backspac:10,backup:0,bag:[0,2],balanc:3,bar:[2,3,10],bare:10,base:[2,9],bash:[1,2,10],basi:3,basic:[1,4],bat:2,bazaar:2,beam:10,bear:10,becam:9,becaus:[0,1,2,3,4,9],becom:[2,4,10],been:[2,3,4,9,10],beep:10,befor:[0,1,2,3,9,10],began:10,begin:[2,3,6,7],behav:2,behaviour:[0,7],bell:2,below:[3,7,9,10],besid:3,best:2,better:[1,2,3],between:[0,1,2,3,5,7,9,10],bias:1,big:[2,9],bigger:2,bind:[1,2,3],bit:[0,1,2,3,9,10],bitbucket:9,bitmap:10,bksp:10,black:10,blend:10,blink:10,blob:9,block:[2,10],blogg:2,blue:[3,4],boddi:[5,8,9],bold:10,boldli:2,bolt:9,border:[0,1,10],borderless:0,borg:2,both:[2,3],bottom:[3,10],bound:2,box:[3,4,10],branch:[2,9],brave:2,brazilian:2,brief:[3,7],briefli:10,bright:10,bring:9,british:2,broadcast:2,broken:[2,10],brought:2,brows:2,browser:9,bsd:8,bubbl:2,buffer:1,buggi:10,bugzilla:9,build:[2,4],built:[3,9,10],bulb:10,button:[2,3,4,7,9,10],c0bebf:10,c80003:10,cach:1,call:[0,2,9,10],callback:[2,9],callto:3,came:2,camillo:9,can:[0,1,2,3,4,7,8,9,10],cancel:3,cannot:[0,3,4],canon:2,capabl:[2,9],capit:9,care:[0,2,4],casual:6,cat:1,catalan:2,caus:[0,2,4,10],center:2,central:10,cern:2,certain:[1,9],chanc:[2,9,10],chang:[0,2],charact:[4,10],check:[2,9,10],checkout:2,chew:2,child:3,children:[2,3],choffe:9,choos:10,chosen:9,chri:9,churn:2,clariti:0,classnam:0,claus:8,clear:[3,6,9,10],clearli:2,clever:9,click:[1,2],cliff:2,clipboard:[3,9],clisnip:9,clockwis:3,clone:9,clone_sess:9,close:[1,2,3,4,10],close_button_on_tab:2,cluster:9,cluster_connect:9,clusterm:[2,10],clutter:[2,3],cockl:2,code:[1,2,4,7,8],codehau:9,cohes:2,cold:1,collect:[3,10],color:9,colour:[4,9],column:10,com:[2,9],combin:[9,10],combo:2,come:[2,10],comic:9,comma:0,comment:[2,9],common:[1,9],commonli:9,commun:0,compar:[0,1,2],compil:[1,2,9],complain:2,complet:[1,2,3,9],complex:[6,9],compon:[2,10],compos:4,composit:10,configobj:[2,8,9],configur:[0,1,2,3,7,9,10],confirm:2,confus:[2,6],connect:[0,9],consequ:2,consid:[3,4,9,10],consist:[4,10],consol:[0,9,10],constantli:9,contain:[0,2,9],content:[6,9],context:[0,2],contrast:2,contribut:[2,5],control:[0,10],convert:[3,9],convinc:3,coordin:2,copi:[2,3,4,9,10],cori:[2,8],correct:[2,5],cosmet:3,could:[0,1,2,3,4,5,7,9],counter:[0,2],coupl:[1,2],cours:[0,1,3],cover:[0,3,4,10],cranni:2,crash:10,crazi:2,creat:[0,2,4,7,8],creation:5,creator:9,ctr:2,ctrl:[2,3,4,9,10],cultur:6,current:[0,2],cursor:[],custom_command:9,customcommandsmenu:9,customis:[0,7,9],cycl:3,dai:[0,1],data:[0,9,10],date:5,dave:8,deal:[0,2],dealt:2,debian:9,debug_class:0,debug_method:0,decis:9,decreas:3,dedic:0,deeper:2,def:9,defer:2,deficit:1,defin:[3,4,10],definit:[5,9],del:10,delet:[9,10],deletemeconfig:1,deliber:3,depend:[0,2,3,9,10],deprec:2,deriv:9,describ:[3,4,10],descript:[3,4],design:[1,2,9],desir:[3,10],desktop:10,destruct:4,detail:[0,4,9,10],detect:[2,7,9],determin:[0,10],deutsch:2,dev:[2,5],devel:2,dialect:2,dialog:[9,10],dict:9,did:1,didn:1,diff:2,differ:[0,1,2,3,4,8,9,10],dig:2,dim:10,dimens:[3,10],dir:0,directli:[1,7,9],directori:[0,2,7,10],disabl:[0,1,9,10],disappear:[1,3,9,10],discard:10,discov:2,discuss:9,disk:[9,10],displai:[0,2,10],distinct:7,distinguish:7,distort:2,distract:3,distribut:[2,3,8,9],divid:3,document:[2,4],doe:[0,2,3,4,9,10],doesn:[2,10],domain:3,don:[1,2,3,5,9,10],done:[1,2,3,7,9,10],dotfil:9,doubl:[3,7,10],down:[1,2,3,7,9],dozen:3,dpm:2,dr1:9,drag:[1,2],draw:7,drawn:10,drive:2,drop:2,drop_cach:1,due:[1,2,3,10],dump:[0,9],dump_to_fil:9,dumptofil:9,duplic:[2,4],dvc:2,dynam:[2,10],each:[1,3,4,7,9,10],earli:4,earlier:9,eas:3,easi:10,easier:[1,2],easili:0,echo:1,edg:2,edit:[0,2,3,4,7,9],editor:[5,6,9],editor_plugin:9,editor_termin:9,effect:[3,10],effici:1,effort:2,egmont:2,either:[1,2,4,7,10],element:2,elimin:[2,3],els:2,elsewher:[2,9,10],empti:[1,10],emul:6,en_gb:2,en_u:2,enabl:[0,3,4,9,10],encod:[],encount:2,end:[3,9,10],endeavour:2,enforc:9,english:2,enhanc:2,enough:[2,3],enter:[7,9],entir:[2,9],entitl:6,entri:[3,4,7,9,10],enumer:3,environ:[0,2],epsilon:4,equal:[3,10],equalis:2,esc:10,escap:10,especi:2,etc:[0,2,6,9],etho:2,evalu:9,even:[0,1,2,3,4,7,10],evenli:3,event:9,eventu:2,ever:[1,10],everi:[1,9],everyth:2,exact:[1,9],exactli:[3,10],examin:9,exampl:[2,3,9],excel:9,except:3,execut:[0,9,10],exist:[1,2,3,9,10],exit:[0,1,2,4,10],expand:[2,9],expect:9,experiment:[4,10],explain:[2,10],explan:0,explicitli:[8,10],explor:[0,1,2,3],expos:9,exposur:2,express:9,extend:3,extens:[1,2,10],extra:[0,1],extract:9,extrem:3,eyesight:4,f11:3,face:2,facil:0,facilit:0,fact:[1,3],factori:1,fail:0,fairli:[2,3,9],fake:[2,6,10],fall:[2,8],fals:0,familiar:[3,10],famou:2,far:[2,4,9],fast:[1,2],faster:1,featur:[0,1,2,3,4,6,9,10],fedora:2,feel:2,few:[1,2,3,10],ffffff:10,field:4,fifth:3,figur:[2,3,9],fill:0,find:[1,2,3,9,10],findal:9,finish:2,first:[0,1,2,3,4,7,9,10],fit:[2,10],five:3,fix:[1,2,3,4,10],fixabl:2,fixm:2,flag:[2,10],flash:10,flexibl:[3,10],flick:1,flip:2,flush:9,fly:6,focu:[1,2,3,4,10],focus:[3,10],focuss:[2,10],folder:[2,9],follow:[0,3,4,6,9,10],font:[2,3,10],footprint:10,forc:[2,10],forcedicon:0,forcedtitl:0,fork:[2,9],form:[0,3],formal:9,format:[2,3,9],forth:3,forward:3,found:[0,3],four:[9,10],fourth:[0,3],frame:[2,10],framework:9,frankli:[1,2],free:1,freedesktop:0,from:[0,1,2,4],frustrat:1,ftp:3,ftphostnam:3,full:[2,10],fulli:[1,2],fullscreen:[0,3,7,10],fun:3,fundament:2,further:[2,3],futur:[2,3,7],gdk3:2,geometri:[0,10],german:4,get:[0,1],gir:2,git:9,git_plugin:9,git_termin:9,github:[2,8,9],give:[0,1,2,3,9,10],given:[0,2,4,7,9,10],glade:2,glamor:2,glanc:[4,9],glimps:7,global:[2,4],gnome:[1,2,6,10],gnu:[8,9],goal:9,gobject:2,gobjectintrospect:2,gone:4,good:[2,3,4,9],googl:9,googler:9,got:2,gotta:2,gpl:[8,9],grab:[0,2,3],gracefulli:2,grag:[],grandchildren:3,grandpar:3,gratefultoni:9,great:[0,2,9],greek:4,green:3,grei:[4,10],grid:[4,6],group:[0,2],grow:3,gtk2:[1,2,10],gtk3:1,gtk:[2,9],guess:[3,9,10],gui:[6,9],guid:[6,9,10],gum:2,h323:3,hack:2,had:[2,9],half:[2,3],hand:[1,3,4,9],handi:3,handl:[2,3,9,10],handler:[],handler_nam:9,hang:1,happen:[2,3,10],happi:2,hasn:9,hastebin:9,have:[0,1,2,3,4,6,7,8,9,10],haven:[2,9],head:2,header:2,heart:2,heavi:[0,9],hello:2,helluva:1,help:[0,2,3,4,7,9,10],here:[0,1,2,3,4,7,8,9,10],hidden:[0,1,2,3,10],hide:[0,1,2,3,9,10],high:2,highcontrast:2,higher:10,highli:10,highlight:[0,2,3,7,10],hint:10,hit:2,hold:10,home:[0,10],homogen:10,homogeneous_tabbar:2,hook:9,hope:[6,9],horizont:[0,3,10],horrif:8,host:[3,9],hostwatch:9,houston:2,hover:[3,9],how:0,howev:3,hsplit:0,html:[2,3],html_en:2,html_en_gb:2,http:[2,3,9],huge:9,human:0,humour:6,hundr:1,hungri:10,hush_period:9,i18n:2,iambibha:9,ibu:4,icon:0,idea:[1,2,3,9],ideal:5,ident:[1,3,8],idle_add:2,ignor:[2,9],ilgarm:9,imag:[0,2,4,10],immedi:[1,2,10],implement:[9,10],imposs:[2,3],impract:3,improv:[0,1],inactive_period:9,inactivitywatch:9,inbuilt:0,includ:[0,2,4,8],incomplet:2,incorrect:2,increas:3,independ:4,index:[2,3],indic:4,infinit:10,info:[2,9],inform:[0,2,9,10],ing:1,inherit:[2,4,9],inhibit:2,initi:[2,3,5,9,10],input:2,insecur:3,insert:2,insid:[0,9],insofar:8,instal:2,instanc:[0,1,2,3],instead:[0,2,3,4,10],instruct:2,insurmount:2,intend:4,intent:2,inter:0,interact:[0,1,9],interest:[0,2],interfac:[1,2,3],intern:[0,10],interpret:1,introduct:3,introspect:2,invalu:4,investig:4,invis:[2,10],ipc:0,isn:[1,2],isol:3,issu:[1,2,3,9,10],item:[0,2],iter:1,itself:[3,9],jazz:9,job:2,joe:2,johnsanchezc:9,join:2,jone:9,ju1iu:9,juli:2,julien:9,jump:2,junk:9,just:[0,1,2,3,4,6,7,9,10],kbyte:1,keep:[3,4,7,10],kei:[3,4,10],kept:[3,5],kernel:9,keybind:2,keyboard:2,keypress:[1,10],keystrok:[4,10],kick:2,kill:[1,4],kind:2,kmoppel:9,knew:9,knock:2,know:[2,3,9,10],knowledg:9,known:[1,4],kobling:2,konsol:6,kontro:[2,8],label:[2,10],lack:2,lag:5,languag:[2,4],larg:[1,2,3],last:[1,2,3,4,9],lastli:3,later:[2,3],latest:2,launch:[0,1,2,3,7,9,10],launcher:[0,2],launcherapi:2,launchpad:2,launchpad_bug:9,launchpadbugurlhandl:9,layoutmanag:9,lazka:2,learn:2,least:6,left:[2,3,4,10],leftmost:4,less:2,let:[0,2,3,4,6,9,10],letter:[2,4],level:3,liber:9,librari:[8,10],libun:2,libvt:2,licenc:8,licens:[],life:2,light:[2,10],lighter:1,limit:[0,2,3],limt:2,link:[2,3,5,9,10],list:[0,1,2,3,4,6,7,9,10],listen:0,lit:2,littl:[1,2,3,6,9],load:[1,2,3,7,9],local:[2,9],localhost:[0,3],locat:[3,9,10],log:[3,9],logic:[2,10],login:[3,10],longer:[2,10],look:[0,2,3,4,6,9],loop:10,loquaci:2,lose:[1,2,3,7,10],lot:[0,1,2,3,6],love:9,lower:[2,4],machin:[3,4,9],made:[2,3,4,9],mai:[0,1,2,3,4,9,10],mail:3,mailto:3,maintain:[2,8,9],mainten:2,major:2,make:0,man:[0,8],manger:3,mani:[0,2,3,6,9,10],manual:0,manual_xxxx:2,mariolameira:9,mark:2,master:[0,2,9],match:[3,9],matur:9,maximis:[0,2,3,4,7,10],mayb:[2,3],mbyte:1,mchelem:9,mean:[2,4,7,10],meant:3,meantim:0,mechan:9,median:1,mega:3,mem:1,mention:[0,2,3,4,9],menu:[0,2],menubar:10,menuitem:9,merg:2,messag:0,metaphor:6,method:[0,1,2,3,9,10],middl:[1,10],might:[2,3,4],mikeadkison:9,mild:10,mileston:2,millisecond:9,mind:[1,2,10],mindmaz:2,mine:3,minim:[0,3],minimum:10,minor:5,minu:[2,3],misbehav:3,misc:8,misnam:9,miss:[2,5],mit:8,mix:2,mode:[2,4,9,10],model:10,modifi:[3,4],mojo:9,moment:[1,10],monei:6,monoglot:2,more:[0,1,2,3,4,6,7,9,10],most:[3,6,9],mostli:2,mous:[2,3,4,7,9,10],mouser:3,move:[1,2,3,7,9,10],movement:3,movi:2,mozilla:9,much:[1,2,3,10],multipl:[0,2],must:[1,2,3,9,10],my_logg:9,myconfig:9,myfirstplugin:9,mysteri:[2,3,10],nalkaya:9,name:[0,2,3,4,7,9,10],namespac:9,nasa:2,nativ:2,natur:[3,10],neat:2,necessari:[0,3],need:[0,1,2,3,4,7,9,10],net:[2,9],never:[2,3,9,10],newer:[2,4,10],next:2,nicoulaud:9,nightmar:2,nntp:3,node:2,nois:10,non:[2,8],none:[4,6,9,10],nook:2,normal:[0,1,10],note:[2,3,5,8,10],noth:10,notic:[1,2],notif:9,notion:0,now:[2,3,4,9],nuke:2,number:[0,2],numer:0,nut:9,object:9,oblig:1,obviou:[3,6,9],occur:10,off:[0,1,2,3,4,10],offend:2,often:[1,3,6],old:2,on_vte_size_alloc:2,onc:[1,2,3,4,9,10],onli:[0,1,2,3,4,9,10],onto:10,open:[0,1,2,3,7,9,10],open_any_file_plugin:9,opensus:2,opinion:1,oppos:10,order:[2,3,6,7,9],org:[0,2,3,8,9],organis:4,origin:[2,3,9,10],other:0,otherwis:9,our:[2,10],out:[1,2,3,4,9],output:[0,2,9,10],outsid:9,outstand:[2,3],over:[1,2,3,9,10],overdu:2,overhead:1,overlai:2,overrid:10,overridden:10,own:2,packag:[2,9],pad:3,page:[0,2,3,8,9],pai:9,paid:6,pane:10,panel:10,papajok:9,paramet:10,parent:[0,2,3],part:[0,3,4,9,10],parti:[],partial:10,particl:2,particular:[2,9],particularli:2,pass:[0,9,10],past:[3,4,10],patch:2,path:[0,3,10],pattern:[3,9,10],peev:2,peopl:[0,1,2],per:[2,3,7,10],perceiv:[0,9],perfect:1,perhap:2,period:9,permiss:9,person:[1,2],pet:2,pgdn:3,pgi:2,pgularski:9,pgup:3,phi:4,pick:[2,10],piec:[2,8],pigo:2,pin:[2,7],pinpoint:1,pip:2,pixel:10,place:[1,3,4,10],plain:2,pleas:[2,8,9,10],plenti:2,plu:[3,4],plugin_get_config:9,plugin_set_config:9,point:[1,2,9],pointer:[3,10],poke:9,polici:3,polish:2,polyglot:2,pop:[2,6],popup:[4,9],popup_menu:2,port:[0,1],portuges:2,posit:[0,1,2,3,7,10],poss:2,possibl:[1,2,3,9,10],post:9,postcard:9,poster:2,potenti:[0,1,4,7],power:[2,3,9],ppa:2,practic:1,precaut:9,precis:9,predefin:10,pref:2,prefer:[0,1,2,4,7,9],prefix:9,prefseditor:2,preliminari:9,preselect:2,presenc:4,present:[1,3,9],press:[2,7,10],pretti:9,prev:2,prevent:[0,3],preview:3,previou:[3,10],previous:[2,9,10],primari:[3,10],principl:2,print:0,prioriti:[2,10],probabl:[0,1,2,3,9],problem:[0,4,6,9,10],problemat:1,proc:1,proce:4,process:[0,1,2,3,5,9],product:[0,1],profil:[0,1,2],program:[0,3,10],progress:[1,2,9],project:[2,9,10],promis:2,prompt:[0,7],properli:3,properti:0,proport:10,provid:[2,3,4,8],psutil:2,pt_br:2,pun:4,purpos:[1,2,4],put:[2,6,10],pygobject:2,pygtk:[2,9],python2:2,python3:2,python:0,python_exampl:2,queri:2,quick:[2,4,6,9],quickexit:1,quickli:[4,7],quicklist:2,quiet:9,quirk:10,quit:[0,1,2,9,10],r1598:5,r1621:5,rail:9,raiser:2,random:6,randomli:4,rang:10,rather:[0,1,2,9,10],reach:[2,3,9],read:[2,3,8,10],readabl:0,readthedoc:2,real:[1,2,6],realis:4,realist:2,realli:[1,2,9],reappear:4,rearrang:0,reason:[3,9,10],rebal:[2,3],rebalanc:3,receiv:[2,3,4,9,10],recommend:[0,9],record:[2,10],recov:1,recreat:1,rectangl:10,red:[3,4],reduc:[2,6],redund:9,ref:2,refer:[4,6,9],refresh:2,refund:6,regard:9,region:2,regist:2,regular:9,reimplement:2,rel:2,relat:[0,3,4,9],releas:[2,3,5,9],releg:2,reli:9,remain:[2,4,10],rememb:[0,2],remov:[2,4,10],renam:[2,3],repeat:[3,4],replac:[2,4,10],replic:2,report:9,reposit:9,repres:[3,7],reproduc:[2,9],reproduct:2,request:0,requir:[0,2,10],resembl:3,reset:2,resiz:[3,10],resolv:2,resourc:[2,10],respons:9,rest:0,restart:[1,10],restor:[2,3,9],result:[0,1,2,3,9],revert:10,review:2,revis:2,rewritten:9,right:[0,2,3,4,7,9,10],risk:9,role:0,room:2,root:[1,2,9],rotat:3,rough:2,row:2,rtd:2,rudimentari:2,rule:0,run:[0,1,2,4,7,9,10],runtim:9,sai:[2,4,9],said:8,same:[0,1,2,3,4,7,9,10],save:[1,2,3,6,7,9,10],saver:4,scale:[3,10],scheme:10,scope:[0,9],screen:[0,2,9,10],screenshot:[4,9],script:0,search:0,searchplugin:9,sec:1,second:[0,1,2,3,4,9,10],section:[0,1,3,7,9,10],secur:9,see:[0,2,3,4,8,9,10],seem:[0,2,3,9,10],seemingli:2,seen:[0,2,3,7,9],select:[0,2,3,4,7,9,10],self:[2,9],send:[2,4],sens:[2,3,4,6,9,10],sent:9,separ:[0,3,9,10],seper:[2,10],sequenc:10,sequenti:3,seri:9,seriou:2,serv:2,server:[0,2,3,10],session:[2,9,10],set:[0,1,2],setup:[2,6],sever:[4,9],shade:[3,10],shape:10,share:[1,9],shepherd:2,shift:[2,3,4],shini:9,ship:9,shortcut:[1,2,3,4,6,7,10],should:[0,1,2,3,5,9,10],show:[0,1,2,3,4,9,10],show_titlebar:9,shown:[3,4,7,9],shrink:10,sibl:[2,3],side:[2,10],sidebar:[2,10],sie:2,signal:2,silenc:9,silent:9,similar:[3,9],simplest:[0,3,6,9],simpli:[0,1,3,4,10],simplifi:9,simultan:6,sinan:9,sinc:[2,10],singl:[0,1,2,3,4,7,10],singleton:2,sip:3,site:9,six:10,size:[0,1,2,3,7,10],skip:4,slide:1,slightli:4,slower:1,slowli:2,small:[2,9,10],smaller:9,smidgen:1,smooth:10,smorgasbord:2,snap:2,snider:8,snip2cod:9,snippet:9,softwar:9,sole:1,solid:10,some:[0,1,2,3,4,5,7,9,10],somebasepluginclass:9,somehow:2,someon:2,someth:[1,2,3,4,9],sometim:[2,3,6],sort:[2,9],sourc:[2,8,9],space:[2,3,9],sparkstar:9,spawn:2,speak:[2,3],speaker:2,specif:[0,2,8,9],specifi:[0,9,10],speech:2,speed:4,spell:2,spend:7,spent:3,sphinx:2,sphinx_rtd_them:2,split:[0,2,3,4,7,9,10],splitter:2,spot:[2,4],sprechen:2,ssh:9,ssh_menu:9,sshermin:9,stabl:2,stai:[1,4],stamina:7,stamp:9,stand:2,standard:[0,3,10],start:[0,1],starter:2,startup:[0,1,10],state:[1,7,8,9,10],statement:0,statu:[2,4,10],step:[2,10],stephen:5,sterl:2,steve:[3,8,9],still:[1,2,9,10],stock_:2,stop:[9,10],storag:9,store:[0,2,7,9],strang:[1,3,6],strictli:[0,2,3],string:[3,9],strip:[3,9,10],strongli:0,structur:[0,9,10],struggl:2,stuff:2,sub:[0,2,3,9,10],subclass:2,submit:2,subsequ:[3,10],substitut:2,sudo:2,suffici:9,suggest:[2,4,9],suit:3,suitabl:3,support:[2,9],sure:[2,3,9,10],surpris:1,swap:1,swatch:10,sync:1,syslog:3,system:[0,2,9,10],tab:[0,2,3,4,6,7,9,10],tabl:10,tailor:3,take:[1,2,3,6,9,10],taken:[0,4,10],talk:6,tall:10,target:[2,3],task:[0,2,3],taskbar:[1,3,10],tbd:[3,4],team:2,technic:3,techqu:2,tell:[2,7],telnet:[0,3],temporarili:[2,3,4],tend:6,tenscoresplugin:9,term:[2,3,8],termin:0,terminal_menu:9,terminal_tab:0,terminal_tab_titl:0,terminalexport:9,terminator_bugzilla_handl:9,terminator_config:0,terminator_plugin:9,terminator_uuid:0,terminatorhostwatch:9,terminatorlib:[0,2,9],terminatorplugin:9,terminolog:4,ters:2,text:[2,3,9,10],than:[1,2,3,4,7,9,10],theer108:9,thei:[0,2,3,4,5,8,9,10],them:[1,2,3,4,7,9,10],theme:[2,8,9,10],theori:[9,10],therefor:9,therein:9,thi:[0,1,2,3,4,5,6,7,8,9,10],thing:[1,2,3,4,5,7,9],think:[1,2,9],third:[],those:[2,3,4,10],though:[0,4],thought:2,three:[2,3,4,10],through:[0,2,3,9,10],tile:3,till:2,time:[0,1,2,3,4,7,9,10],tint:10,tip:7,titl:[0,1,2],titlebar:[2,4,7,9],todai:3,toggl:[1,2,3,4,10],told:9,too:[2,3,4,9],tool:[2,7,9],toolbar:3,top:[1,2,3,7,9,10],topic:0,total:1,touch:9,tradit:[3,10],train:3,transpar:10,treat:9,tree:[2,10],tri:2,triag:2,tricki:2,trigger:[3,9],trio:3,truli:8,trunk:2,trusti:2,truth:10,tune:3,turn:[0,2,3,4,9,10],tutori:[2,3,9],twice:0,two:[0,2,3,4,9,10],type:[2,3,4,6,9,10],typic:0,ubuntu:[2,10],ultim:9,ummmm:[9,10],uncertainti:9,uncheck:3,uncontrol:10,under:[0,2,3,8,9],underli:[9,10],underlin:[9,10],underneath:10,understand:[2,3,4,9,10],understood:3,unexplain:10,unfocus:10,unfortun:2,ungroup:[2,4],unhid:[2,3],unicod:10,uninform:1,uniqu:[7,9],uniti:2,unless:[0,9],unlik:3,unnecessari:2,unsur:9,until:[2,3,4,9,10],upload:9,upon:0,upper:4,urgent:10,uri:9,url:[],url_handl:9,urlhandl:9,usabl:2,user:[2,3,9,10],usr:[2,9],usual:[2,4,9,10],utf:[3,10],util:[0,10],uuid:[0,7],vagu:0,valencia:2,valid:[0,2,9],valu:[2,7,9,10],valv:2,vanish:10,vari:[3,10],variabl:[0,2],varianc:1,variant:9,variou:0,verg:2,veri:[1,2,10],verifi:2,version:[0,1,2,4,10],vertic:[0,3,10],via:6,video:2,view:[1,2,3],virtual:10,visibl:[1,2,3,7,10],visible_bel:2,visual:[2,4,10],voidspac:8,voip:3,vsplit:0,vte0:2,vte:[1,2,3,4,10],wai:0,wait:[2,7,9],walk:2,want:[2,9,10],warm:2,warn:2,warrant:3,wast:3,watch_interv:9,webcal:3,weird:2,welcom:[1,2,5],well:[3,4,7,10],went:9,were:[1,2,3,4,9],what:2,whatev:[1,2,9,10],wheeldown:3,wheelup:3,when:[0,1,2,3,4,7,9,10],where:[1,2,3,4,7,9,10],whether:[4,10],which:[0,1,2,3,4,7,8,9,10],whichev:[0,1],white:9,who:2,whole:2,wholli:8,wide:10,wider:2,widget:[1,2,10],width:10,wiki:2,wise:1,wish:[3,9,10],wishlist:2,within:[0,2,3,7,10],without:[0,2,4,9],wm_class:0,wm_window_rol:0,wonder:10,word:[6,10],word_char:2,work:0,workdir:2,workspac:[1,2,7,10],world:2,worri:1,worst:9,would:[0,1,2,3,4,9],wouldn:0,wow:9,wrangl:2,wrap:[],wrapper:0,written:[2,8,9],www:[2,3,9],wwwhostnam:3,xterm:[1,6],xxxx:2,yeah:[1,2],yet:[2,9],you:[0,1,2,3,4,6,7,9,10],your:[0,1,2,4,7,8],yournam:9,yourself:3,yup:9,zero:3,zoom:2},titles:["Advanced Usage","Frequently Asked Questions","Getting involved","Getting Started","The Grouping Menu","Document history","Welcome to Terminator’s documentation!","Layouts and the Layout Launcher","Licensing","Plugins","Preferences Window"],titleterms:{abl:3,about:10,action:2,activ:9,advanc:0,api:2,appear:10,applic:2,apt:9,around:3,artwork:2,ask:1,background:10,bad:1,basic:9,behaviour:10,bell:10,bloat:1,broadcast:4,buffer:3,bug:[2,9],chang:3,click:3,code:9,colour:10,command:[0,9,10],compat:10,config:0,context:[3,9],creat:9,current:3,cursor:10,custom:[0,9],dbu:0,debug:0,develop:2,doc:2,document:[5,6],drag:3,drop:3,dumb:1,encod:10,file:0,foreground:10,frequent:1,from:6,gener:[0,10],get:[2,3],global:10,group:4,gtk3:2,handler:9,histori:5,how:1,icon:2,improv:2,inact:9,includ:9,input:4,insert:[3,4],instal:9,involv:2,item:[3,9],keybind:10,keyboard:3,launcher:7,launchpad:9,layout:[0,3,7,10],licens:8,like:1,line:0,logger:9,main:2,make:1,manag:0,manipul:4,manual:2,maven:9,memori:1,menu:[3,4,9],multipl:4,navig:3,next:3,number:[3,4],option:0,other:2,own:9,palett:10,parti:9,perform:1,plugin:[2,9,10],port:2,prefer:10,prev:3,profil:[3,10],python:1,quak:1,question:1,remotin:0,reset:3,ridicul:6,scroll:10,scrollback:3,scrollbar:3,search:3,sensibl:1,set:3,shell:0,shot:[2,9],simpl:6,slow:1,splitter:3,start:3,style:1,suck:1,summari:1,termin:[1,2,3,4,6,9,10],test:[2,9],third:9,titl:3,titlebar:10,translat:2,updat:2,url:9,usag:0,wai:1,watch:9,welcom:6,what:6,why:1,window:[0,10],work:1,wrap:9,write:1,your:9,zoom:3}}) \ No newline at end of file diff --git a/doc/manual/source/gettingstarted.rst b/doc/manual/source/gettingstarted.rst index 43bb2d20..eaa3d83d 100644 --- a/doc/manual/source/gettingstarted.rst +++ b/doc/manual/source/gettingstarted.rst @@ -12,7 +12,7 @@ Getting Started =============== -This page is an introduction and tutorial, that will get you familiar +This page is an introduction and tutorial that will get you familiar with Terminator's features. Additional functional areas are explored in other pages, but at the end of this page you'll be getting a good idea of the power of Terminator. @@ -319,15 +319,19 @@ The above action results in the following: The other way to drag a terminal can be done from within the terminal with ``Ctrl``\ +\ ``right-click-drag``\ . With this method once you start the -grag, you *must* release the ``Ctrl`` key *before* releasing the +drag, you *must* release the ``Ctrl`` key *before* releasing the ``right-mouse-button``. If you do not the drag will cancel. You can drag between tabs by initiating a drag and hovering over the tab. -Terminator will switch to the tab under the cursor, and the terminal can be -dropped. +Terminator will switch to the tab under the cursor, you can then drag to the +desired position, and the terminal can be dropped. You can also drag between Terminator windows *provided the windows are part of the same process*. By default all windows will be part of the same process. +Windows will not be part of the same process if you deliberately turn off +the :ref:`DBus` interface with the :ref:`Preferences ` or the +:ref:`command-line-options` when starting Terminator up. :ref:`Layouts ` +are also currently isolated at a process level for technical reasons. .. _layout-shortcuts: