all repos — shlide @ 9806b81849d8efa2ab371b7b0a1598e593d14354

slide deck presentation tool written in pure bash

remove logging
Akshay nerdypepper@tuta.io
Mon, 03 Feb 2020 00:16:01 +0530
commit

9806b81849d8efa2ab371b7b0a1598e593d14354

parent

0cc2b403aca14370130a86cc9787cb0e57bfda03

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M shlideshlide

@@ -24,7 +24,6 @@ max=0

local IFS= while read -r line; do l=$(ansi_filter $(colorify "$line")) - echo "$l" >> log.txt if [ "${#l}" -gt "$max" ]; then max="${#l}"; fi done < "$1" printf '%s\n' "$max"

@@ -83,7 +82,7 @@ # line by line.

l=$(colorify "$line") printf '%s' "$l" case $line in - "" | *"\n"*) + "" | "\n") ((++reduce));; esac # Move down and back after each print.