The toolbar and notebook name does not show when I call and load the themes from the notebook.
I can load the themes from notebook using a code but I am not sure how to use the switches like -T
and -N
for call to toolbar and notebook name.
I have used the following in a code cell:
from jupyterthemes import get_themes
import jupyterthemes as jt
from jupyterthemes.stylefx import set_nb_theme
set_nb_theme('solarizedd')
The theme changes but the toolbar and notebook name does not appear. Even using the Toggle Header and Toggle Name from view in menu bar has no effect.
set_nb_theme('solarizedd', -T, -N,-kl)
won't work (NameError: name 'T' is not defined
and using"-T"
etc. will also fail)...!jt
though works like a charm!:) +1! – Eran