diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-25 17:55:27 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-10-25 17:55:27 -0400 |
commit | 6312ef191a9ab7466ec72bb3aba7138816062c2f (patch) | |
tree | f7b267d110190ecad3f3c28aa3b5e8143936e03c /.local/bin/colorbars | |
parent | 1b23fd869dc468c8469517761c17d4238a8d104f (diff) |
Cleanup useless/unused shell scripts
Diffstat (limited to '.local/bin/colorbars')
-rwxr-xr-x | .local/bin/colorbars | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/.local/bin/colorbars b/.local/bin/colorbars index 4e3b8f7..e8e0b9d 100755 --- a/.local/bin/colorbars +++ b/.local/bin/colorbars @@ -1,35 +1,32 @@ #!/bin/sh -# -# colorbars - smpte color bars in sh -# http://git.io/colorbars - echo -for y in $(seq 0 13); do - printf %s ' ' +# mini smpte color bars +for y in $(seq 0 6); do + printf %s ' ' for color in 7 3 6 2 5 1 4; do tput setab ${color} - printf %s ' ' + printf %s ' ' done tput sgr0 echo done for y in 0 1; do - printf %s ' ' + printf %s ' ' for color in 4 0 5 0 6 0 7; do tput setab ${color} - printf %s ' ' + printf %s ' ' done tput sgr0 echo done -for y in $(seq 0 4); do - printf %s ' ' +for y in $(seq 0 2); do + printf %s ' ' for color in 4 4 4 4 4 7 7 7 7 7 5 5 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0; do tput setab ${color} - printf %s ' ' + printf %s ' ' done tput sgr0 echo |