Compare commits

..

No commits in common. "7940f6e3dd24ddeafe995163fc4f29ba4e430b32" and "047480274b5997715c340145e1d320605b46df53" have entirely different histories.

5 changed files with 30 additions and 19 deletions

View file

@ -6,11 +6,25 @@ line() {
i=1
while [[ $i -le $COLUMNS ]]; do
num=
echo -en "\u258$((RANDOM % 8 + 1))"
i=$((i + 1))
echo -en "\u258$(($RANDOM % 8 + 1))"
i=$(($i + 1))
done
}
# print the text with gradient
# awk -v columns=$COLUMNS -v s=$(line) \
# 'BEGIN{
# for (colnum = 0; colnum<columns+1; colnum++) {
# r = 255-(colnum*255/columns);
# g = (colnum*510/columns);
# b = (colnum*255/columns);
# 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+1,1);
# }
# printf "\n";
# }'
awk -v columns=$COLUMNS -v s=$(line) \
'BEGIN{
for (colnum = 0; colnum<columns+1; colnum++) {

View file

@ -54,7 +54,3 @@ alias zenith="zenith -d 0 -n 0"
alias pdm-start='eval "$(pdm shell)"'
# GNU make
alias mkrt='make -C $(git rev-parse --show-toplevel)'
alias mk="make"
alias mkc="make -C"

View file

@ -83,3 +83,4 @@ help() {
format-qmd() {
jupytext --from qmd $1 --pipe black
}