Patch from Owen Williams:
Switch terminal colors to black-on-white for readability, especially in no-backlight situations.
This commit is contained in:
parent
52662144d3
commit
fefe201d24
@ -23,8 +23,8 @@ class Terminal(gtk.HBox):
|
|||||||
|
|
||||||
def _configure_vte(self):
|
def _configure_vte(self):
|
||||||
self._vte.set_font(pango.FontDescription('Monospace 10'))
|
self._vte.set_font(pango.FontDescription('Monospace 10'))
|
||||||
self._vte.set_colors(gtk.gdk.color_parse ('#AAAAAA'),
|
self._vte.set_colors(gtk.gdk.color_parse ('#000000'),
|
||||||
gtk.gdk.color_parse ('#000000'),
|
gtk.gdk.color_parse ('#FFFFFF'),
|
||||||
[])
|
[])
|
||||||
self._vte.set_cursor_blinks(False)
|
self._vte.set_cursor_blinks(False)
|
||||||
self._vte.set_audible_bell(False)
|
self._vte.set_audible_bell(False)
|
||||||
@ -140,4 +140,4 @@ class Interface:
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
multiple = Multiple()
|
multiple = Multiple()
|
||||||
self.widget = multiple.main_vbox
|
self.widget = multiple.main_vbox
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user