Skip to content

Instantly share code, notes, and snippets.

@koter84
Created July 25, 2016 14:04
Show Gist options
  • Save koter84/54eba5f59830220fcee30843267b2236 to your computer and use it in GitHub Desktop.
Save koter84/54eba5f59830220fcee30843267b2236 to your computer and use it in GitHub Desktop.
test for true-color in the terminal
#!/bin/bash
awk 'BEGIN{
s="/\\/\\/\\/\\/\\"; s=s s s s s s s s;
for (colnum = 0; colnum<77; colnum++) {
r = 255-(colnum*255/76);
g = (colnum*510/76);
b = (colnum*255/76);
if (g>255) g = 510-g;
printf "\033[48;2;%d;%d;%dm", r,g,b;
printf "\033[38;2;%d;%d;%dm", 255-r,255-g,255-b;
printf "%s\033[0m", substr(s,colnum+1,1);
}
printf "\n";
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment