Skip to content

Instantly share code, notes, and snippets.

@joecheatham
Created August 16, 2015 07:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joecheatham/86bad8f0c8ea13f4d06f to your computer and use it in GitHub Desktop.
Save joecheatham/86bad8f0c8ea13f4d06f to your computer and use it in GitHub Desktop.
Custom settings for Chrome OS Crosh shell
// Enable bold
term_.prefs_.set('enable-bold', true);
// Custom Colors
term_.setBackgroundColor("#242424");
term_.setForegroundColor("#FFFFFF");
term_.prefs_.set('color-palette-overrides', [
'#000000',
'#C75646',
'#8EB33B',
'#D0B03C',
'#72B3CC',
'#C8A0D1',
'#218693',
'#B0B0B0',
'#5D5D5D',
'#E09690',
'#CDEE69',
"#AAAFFF",
'#9CD9F0',
'#FBB1F9',
'#77DFD8',
'#F7F7F7']);
// Cursor shape/color
term_.setCursorShape(hterm.Terminal.cursorShape.BEAM);
term_.setCursorColor("#B0B0B0");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment