Created
January 17, 2016 03:14
-
-
Save hernan604/750adc9040778e33244c to your computer and use it in GitHub Desktop.
xterm adjust colors (without close xterm)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo -e '\e]11;rgb:00/00/00\a' #set xterm bg | |
| echo -e '\e]10;rgb:ff/ff/ff\a' #set xterm fg | |
| for i in {0 1 2 3 4 5 6 7 8 9 a c b d e f 0} ; do echo -e "\e]11;rgb:${i}${i}/${i}${i}/${i}${i}\a" ; done; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment