diff options
author | emaste <emaste@FreeBSD.org> | 2014-06-06 17:38:30 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2014-06-06 17:38:30 +0000 |
commit | ba820990ea98d46071114256fb6121e782284b45 (patch) | |
tree | c1d6c1d365366263bea8d6c29c56073bedbd9c79 | |
parent | 8ff330c3f483900fdab35f6775ce225242eab0da (diff) | |
download | FreeBSD-src-ba820990ea98d46071114256fb6121e782284b45.zip FreeBSD-src-ba820990ea98d46071114256fb6121e782284b45.tar.gz |
Update after r267011: use -h height and -w width args
-rw-r--r-- | tools/tools/vt/fontcvt/terminus.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/tools/vt/fontcvt/terminus.sh b/tools/tools/vt/fontcvt/terminus.sh index 260ee07..b04c100 100644 --- a/tools/tools/vt/fontcvt/terminus.sh +++ b/tools/tools/vt/fontcvt/terminus.sh @@ -1,10 +1,12 @@ #!/bin/sh +# $FreeBSD$ + for i in 6:12 8:14 8:16 10:18 10:20 11:22 12:24 14:28 16:32 do C=`echo $i | cut -f 1 -d :` R=`echo $i | cut -f 2 -d :` ./fontcvt \ - $C $R \ + -w $C -h $R \ ~/terminus-font-4.36/ter-u${R}n.bdf \ ~/terminus-font-4.36/ter-u${R}b.bdf \ terminus-u${R}.vfnt |