startup and file requester change

- hardware startup: added copper macros
 - file requester: add blocking requester for parent window
This commit is contained in:
Wei-ju Wu
2016-02-05 20:52:36 -08:00
parent a20c596b9c
commit b4ed097fad
4 changed files with 64 additions and 22 deletions
Executable
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# jpg2ham6 - a tool to convert jpg images to HAM6 IFF/ILBM
# requires Netpbm
if [ "$#" -ne 2 ]; then
echo "Usage: $0 <jpg-file> <iff-file>"
else
jpegtopnm $1 | ppmtoilbm -ham6 -ecs > $2
fi