Skip to content

Instantly share code, notes, and snippets.

@hernan604
Created January 17, 2016 03:14
Show Gist options
  • Select an option

  • Save hernan604/750adc9040778e33244c to your computer and use it in GitHub Desktop.

Select an option

Save hernan604/750adc9040778e33244c to your computer and use it in GitHub Desktop.
xterm adjust colors (without close xterm)
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