diff options
author | uvok | 2025-07-20 11:16:11 +0200 |
---|---|---|
committer | uvok | 2025-07-20 12:41:58 +0200 |
commit | 7791f43fb1b328e470ed14facc064f4252ce636e (patch) | |
tree | 4d6c3647e3d8c4933d53f8f1031aa8bcf30446e9 /conv.sh | |
parent | f5794c6f8b8a1f736ea7a524e72aed46baba4bd6 (diff) |
Handle r/w/notify properly
signal back bluetooth selection
Diffstat (limited to 'conv.sh')
-rw-r--r-- | conv.sh | 23 |
1 files changed, 11 insertions, 12 deletions
@@ -10,20 +10,19 @@ DEPTH="-depth 1" modes=( "o8x8" "h4x4a" -) -# "checks" -# "o3x3" -# "o4x4" -# "h3x3a" -# "threshold" -# "h4x4o" -# "h6x6o" -# "h8x8o" -# "h16x16o" -# "h6x6a" -# "h8x8a" + "checks" + "o3x3" + "o4x4" + "threshold" + "h4x4o" + "h6x6o" + "h8x8o" + "h16x16o" + "h6x6a" + "h8x8a" +) for mode in "${modes[@]}"; do convert "$1" ${COMMON_OPT} -ordered-dither ${mode} ${DEPTH} output-${mode}.jpg convert "$1" ${COMMON_OPT} -ordered-dither ${mode} ${DEPTH} src/output_${mode}.xbm |