Files
dotfiles/scripts/truecolor-test.sh
Kyren223 a1434b8287 Changed a bunch of tmux stuff, fixed annoying issue with hostname for
windows, root cause was catppuccin, removed the true color fixes because
it's no longer needed due to using linux + ghostty, but if there r any
issues in the future, maybe it's due to this, but everything seems to
work
2024-12-15 10:59:26 +02:00

18 lines
592 B
Bash
Executable File

#!/usr/bin/env bash
awk -v term_cols="${width:-$(tput cols || echo 80)}" -v term_lines="${height:-1}" 'BEGIN{
s="/\\";
total_cols=term_cols*term_lines;
for (colnum = 0; colnum<total_cols; colnum++) {
r = 255-(colnum*255/total_cols);
g = (colnum*510/total_cols);
b = (colnum*255/total_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);
if (colnum%term_cols==term_cols) printf "\n";
}
printf "\n";
}'