Can you change the text color in the terminal command line for Matlab? (Linux)

16 views (last 30 days)
I know you can customize the colors of the Matlab desktop command window. But I'm wondering if while running matlab -nodesktop, if it's possible to customize the colors of text. So when using the terminal, errors and the prompt would be in whatever color I specify.

Answers (3)

Walter Roberson
Walter Roberson on 23 Dec 2017
No, it cannot be changed to whatever color you specify in that mode. However, you could probably deliberately format some text into a limited number of colors http://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html#8-colors
ESC = char(27);
[ESC '[31mA' ESC '[32mB' ESC '[33mC' ESC '[30m']
You would not be able to control error color: you would have to deliberately switch color each time you wanted to.
http://undocumentedmatlab.com has some grotty details on customizing prompts, but I do not recall at the moment whether that only works in desktop mode or not.

Erez
Erez on 18 Jun 2018
If you would like errors to print out in a different color take a look at the following link (I can confirm it works well in Ubuntu 16.04 with R2018a, should work with other distros too). stderr in different color. This will change the std error color for anything in terminal to be red (not just matlab).I'm not sure what you can do for warning colors though.

Prakhar Rai
Prakhar Rai on 29 Jun 2021
There are some options in the Environment section,but only dip is that it'll be same in both editor and command window.Also the standard one is pretty good,so just stay minimal.

Categories

Find more on Environment and Settings in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!