I am looking for a command line way to change the background & foreground colors of all open terminal (and also for any new terminal, the new settings should be applied).

Using something like setterm -term linux -back blue -fore white -clear only the terminal in which I execute the command is affected. I want to change for all terminals, without needed to close/reopen any terminal.

thanks

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You can redirect the output of the setterm command to the device file of the terminal.

for i in {0..3}; do setterm -term linux -back blue -fore white -clear > /dev/pts/$i; done
link|improve this answer
thank you so much. it works and i learnt something new about /dev/pts – Jp19 Feb 21 '11 at 4:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.