It would be nice to be able to easily see the conversations I have with my computer in 'call and response' style, so my input lines are in one color, and what is returned shows in a different one.
Asked
Active
Viewed 234 times
2 Answers
0
Add to your ~/.bashrc
export CLICOLOR=1
export PS1="\[$(tput setaf 1)\]\h:\W\\$ "
This will enable colour for your terminal and set your prompt to dark red. The CLICOLOR may not be required on some systems, but for some (such as Mac OS X) it is disabled by default.
A useful tool for building your own custom prompt can be found at https://www.kirsle.net/wizards/ps1.html

Aaron D
- 7,540
- 3
- 44
- 48
0
Right click on the terminal -> Profile ->profile preferences. Here you can play around with colour and visual settings.
EDIT
Sorry I did not quite get problem. On this other forum is well explained
-
In profile preferences I can change the settings for the entire window, I want to know if it's possible to have the input lines in a separate color from the output. – plattitude Feb 06 '15 at 17:16
-
thanks for the link, it helped me understand the strings Aaron D mentioned above. Cheers. – plattitude Feb 06 '15 at 17:44