Skip to content

Commit

Permalink
Add truecolor test script
Browse files Browse the repository at this point in the history
  • Loading branch information
SkwalExe committed Aug 5, 2024
1 parent 3b257e3 commit 711f314
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test-truecolor.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/bash
awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{
for (colnum = 0; colnum<term_cols; colnum++) {
r = 255-(colnum*255/term_cols);
g = (colnum*510/term_cols);
b = (colnum*255/term_cols);
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("||",colnum%2+1,1);
}
printf "\n";
}'

0 comments on commit 711f314

Please sign in to comment.