From ccd830153ab72e41123b39951c07e89f4462140e Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 24 Mar 2011 21:22:40 -0300 Subject: [PATCH] prettygerbv: instead of changing the background, change the drill color - prettygerbv (DRILL): changed from black to blue - prettygerbv (run_gerber): reverted the background color to the default (black) --- fab/prettygerbv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fab/prettygerbv b/fab/prettygerbv index 8aed9ce..3927774 100755 --- a/fab/prettygerbv +++ b/fab/prettygerbv @@ -17,7 +17,7 @@ PASTE="(cons 'color #(39083 39083 50000))" MASK="(cons 'inverted #t) (cons 'color #(8839 53994 8178))" SILK="(cons 'color #(65535 65535 65535))" EDGE="(cons 'color #(65535 65535 0))" -DRILL="(cons 'color #(0 0 0))" +DRILL="(cons 'color #(0 0 40000))" FRONT="(cons 'color #(65535 10000 10000))" BACK="(cons 'color #(30000 65535 30000))" @@ -64,7 +64,7 @@ layers_end() run_gerbv() { - gerbv -p _gvp --dpi=600 -b '#202020' -x png -o "$1" + gerbv -p _gvp --dpi=600 -x png -o "$1" }