in reply to Re: change/detect term screen background color
in thread change/detect term screen background color
Your first script didn't work for me, it only changes the bg of the text.
also, there is an error in your code:system("echo -e"\e[1;32;40m black"); system("echo -e "\e[0m");
should be something like:
system("echo -e '\e[1;32;40m black'"); system("echo -e '\e[0m'");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: change/detect term screen background color
by Allasso (Monk) on Feb 19, 2011 at 20:02 UTC | |
by Allasso (Monk) on Feb 19, 2011 at 20:20 UTC |