[devconsole] - Scrollback terminal buffer set to 1000, font size to 8
This commit is contained in:
parent
62f5c2e239
commit
74e407f9ff
@ -51,6 +51,7 @@ class Terminal(gtk.HBox):
|
|||||||
conf = ConfigParser.ConfigParser()
|
conf = ConfigParser.ConfigParser()
|
||||||
|
|
||||||
conf_file = os.path.join(sugar.env.get_profile_path(), 'terminalrc')
|
conf_file = os.path.join(sugar.env.get_profile_path(), 'terminalrc')
|
||||||
|
|
||||||
if os.path.isfile(conf_file):
|
if os.path.isfile(conf_file):
|
||||||
f = open(conf_file, 'r')
|
f = open(conf_file, 'r')
|
||||||
conf.readfp(f)
|
conf.readfp(f)
|
||||||
@ -61,7 +62,7 @@ class Terminal(gtk.HBox):
|
|||||||
if conf.has_option('terminal', 'font'):
|
if conf.has_option('terminal', 'font'):
|
||||||
font = conf.get('terminal', 'font')
|
font = conf.get('terminal', 'font')
|
||||||
else:
|
else:
|
||||||
font = 'Monospace 10'
|
font = 'Monospace 8'
|
||||||
conf.set('terminal', 'font', font)
|
conf.set('terminal', 'font', font)
|
||||||
self._vte.set_font(pango.FontDescription(font))
|
self._vte.set_font(pango.FontDescription(font))
|
||||||
|
|
||||||
@ -97,8 +98,9 @@ class Terminal(gtk.HBox):
|
|||||||
if conf.has_option('terminal', 'scrollback_lines'):
|
if conf.has_option('terminal', 'scrollback_lines'):
|
||||||
scrollback_lines = conf.getint('terminal', 'scrollback_lines')
|
scrollback_lines = conf.getint('terminal', 'scrollback_lines')
|
||||||
else:
|
else:
|
||||||
scrollback_lines = 100
|
scrollback_lines = 1000
|
||||||
conf.set('terminal', 'scrollback_lines', scrollback_lines)
|
conf.set('terminal', 'scrollback_lines', scrollback_lines)
|
||||||
|
|
||||||
self._vte.set_scrollback_lines(scrollback_lines)
|
self._vte.set_scrollback_lines(scrollback_lines)
|
||||||
|
|
||||||
self._vte.set_allow_bold(True)
|
self._vte.set_allow_bold(True)
|
||||||
|
Loading…
Reference in New Issue
Block a user