Patch from Owen Williams:

Switch terminal colors to black-on-white for readability, especially in
no-backlight situations.
This commit is contained in:
Dan Williams 2006-12-07 12:55:56 -05:00
parent 52662144d3
commit fefe201d24

View File

@ -23,8 +23,8 @@ class Terminal(gtk.HBox):
def _configure_vte(self):
self._vte.set_font(pango.FontDescription('Monospace 10'))
self._vte.set_colors(gtk.gdk.color_parse ('#AAAAAA'),
gtk.gdk.color_parse ('#000000'),
self._vte.set_colors(gtk.gdk.color_parse ('#000000'),
gtk.gdk.color_parse ('#FFFFFF'),
[])
self._vte.set_cursor_blinks(False)
self._vte.set_audible_bell(False)
@ -140,4 +140,4 @@ class Interface:
def __init__(self):
multiple = Multiple()
self.widget = multiple.main_vbox