On 01/24/2016 03:03 PM, Jagdpanther wrote: > I just compiled SageMath 7.0. Both the console and notebook interface > seem to work well. I use a dark gray background in my xterm (uxterm) > window where I run sage (console) and the dark blue "sage:" prompt is > hard to see. How do I change the color of the console "sage:" prompt?
Rather annoying isn't it =) The default should be NoColor, since whatever color scheme we choose is going to be awful for a large number of users. To change it once, run sage: %colors NoColor To change it permanently, add that command to your init.sage file: $ echo '%colors NoColor' >> ~/.sage/init.sage If it works for you, you may prefer the color scheme designed for light-on-dark terminals, obtained with "%colors Linux". -- You received this message because you are subscribed to the Google Groups "sage-support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
