all repos — dotfiles-extra @ d8e4339a351e8556ffe76d3c79be8c8fafa9cd66

extra configs that may be extraneous and/or may be platform specific

bin/truecolor

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
#!/usr/bin/env bash
#
# Use this script to test if you have true color support in your terminal.
# Usage: ./truecolor.sh
# If the color ramp is perfectly smooth, true color is supported.
#
# Source: https://gist.github.com/XVilka/8346728
#
# old 's':
#s="/\\/\\/\\/\\/\\"; s=s s s s s s s s;

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";
}'