nomsu/lib/progressbar/init.nom
Bruce Hill bf37295fae Updating to v6.15, which includes "external (...)" instead of separate
'externally' versions of stuff, and some auto-formatting.
2019-01-15 15:54:28 -08:00

13 lines
503 B
Plaintext

#!/usr/bin/env nomsu -V6.15.13.8
# A progress bar
external:
($x / $w progress bar) means:
$x = ($x clamped between 0 and $w)
$bits = [" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█"]
$middle = ("" if ($x == $w) else $bits.(1 + (floor ((#$bits) * ($x mod 1)))))
return ("
\027[32;40m\($bits, last, rep (floor $x))\$middle\(" ", rep ($w - ((floor $x) + 1)))\027[0m
")
($w wide $ progress bar) means (($ * $w) / $w progress bar)