Reputation: 61
In ipython notebook / jupyter (3.1.0) in the options of "new" you can open a terminal. In MacOsx 10.8, the default is white letters in dark background.
Question: is there a way to change/configure this?
Upvotes: 5
Views: 3209
Reputation: 1464
setterm -term linux -back <background_colour> -fore <text_color> -clear
from the colors, you can chose from (both fore- and background):
black|blue|green|cyan|red|magenta|yellow|white|default
Upvotes: 3