luisfciencias
luisfciencias

Reputation: 61

Change background color of the terminal in ipython notebook / jupyter

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

Answers (1)

Ankit Kumar Namdeo
Ankit Kumar Namdeo

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

Related Questions