st

st config
git clone git://git.evenfri.xyz/st.git
Log | Files | Refs | README | LICENSE

colors.sh (151B)


      1 #!/bin/bash
      2 
      3 for i in {0..255}; do
      4     printf "\033[38;5;${i}m%3d\033[0m " $i
      5     if [ $(( (i + 1) % 12 )) -eq 0 ]; then
      6         echo
      7     fi
      8 done
      9 echo