From fefe201d2465123fe1e94340b810b2afa23153b7 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 7 Dec 2006 12:55:56 -0500 Subject: [PATCH] Patch from Owen Williams: Switch terminal colors to black-on-white for readability, especially in no-backlight situations. --- shell/console/terminal.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/console/terminal.py b/shell/console/terminal.py index 038c36db..c5e60a2c 100644 --- a/shell/console/terminal.py +++ b/shell/console/terminal.py @@ -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 - \ No newline at end of file +