Created
May 11, 2021 13:22
-
-
Save gmtborges/e851fdb69ea8607d042acde467f21003 to your computer and use it in GitHub Desktop.
Test true color 256color
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
#!/bin/bash | |
# Based on: https://gist.github.com/XVilka/8346728 | |
awk -v term_cols="${width:-$(tput cols || echo 80)}" 'BEGIN{ | |
s="/\\"; | |
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(s,colnum%2+1,1); | |
} | |
printf "\n"; | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment