Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-12-07 17:55:56 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-12-07 17:55:56 (GMT)
commitfefe201d2465123fe1e94340b810b2afa23153b7 (patch)
tree958c05c23c2236f2600c6a853394d3d6a7634d45 /shell
parent52662144d3428134a8a6f3d9c24a8d98ca90b2ea (diff)
Patch from Owen Williams:
Switch terminal colors to black-on-white for readability, especially in no-backlight situations.
Diffstat (limited to 'shell')
-rw-r--r--shell/console/terminal.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/console/terminal.py b/shell/console/terminal.py
index 038c36d..c5e60a2 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
+