X-Authentication-Warning: delorie.com: mail set sender to geda-help-bounces using -f X-Recipient: geda-help AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=xgchOLUtIavN7AyTQsF7U7mYu9rU1iCw215NJchwOi4=; b=Cy+Bt2uN/4PoB3AEAdpkcQ1Tq0nc1OKLB/mM3Tq+hG8NHsGummnw+LoE8/N2xEqcmW 5wuwl/cZFQDZIy/u++1uac7kwfJsrweVlQcQ2n44iKwKG+KrR0p5hWTimd4wX7XoOZfb HLWv2aAfPatXkYskSob5jC6lzzwLP+l5syXiC6m/Mh4HCYwyMnjn8+9BXW9TdIfic67G Nbl0AHm5X98q1Ho6yaIrbV5FhtrhCd9hgCfHbLZlFRWtLVT0YoMoMScbkCiE/IB7CWIQ eCaHXAKjx4YxP0rRL7hepM60TjeDvKqWpdtkLl96BzewerhPiMUZ0wzDhl1g8bKyNQWb mrRw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=xgchOLUtIavN7AyTQsF7U7mYu9rU1iCw215NJchwOi4=; b=f6LzPihp/uIAHiZc9LDWEKJCTmdkuMt3IZVNGvgMUu8hvdfBa/lKvcTQPqVQIgJ1iB FBdrZ1mWCXkXu4W88rDso1GzOxgDISoM+69+WftAqaSGeA2dB9UKOHoF0BvSSnBJWBES JD3bhv5Z1wGVUM5zMqegfgMqoGKM+LuWT1yEsVey3nI3MqncxxfSQY6DZV4CpNGd0ncf hEzB3ESkX0crkv2hnIc4VbElny1U+fHVv2bXdHKCu9IqdgXEtHDAMtYmCOrgnh18l/9c EAydXcOnxAtZU4+b8PJO/AzSn3ng1EP3jd6DUZuqIaSXyrT6FRo5ie5W+OLtggK244T+ tHNw== X-Gm-Message-State: AEkoouudotfXMKpu/77ucIdhbegWj2az3D8FlHC5jid0AQWvV3gSD5AZ3SoVYpRBQkJWvQ/9xv0PcNCtF1GJWw== X-Received: by 10.159.35.112 with SMTP id 103mr7717961uae.55.1469427763532; Sun, 24 Jul 2016 23:22:43 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <264513173.3476748.1469372356006.JavaMail.yahoo@mail.yahoo.com> References: <264513173 DOT 3476748 DOT 1469372356006 DOT JavaMail DOT yahoo DOT ref AT mail DOT yahoo DOT com> <264513173 DOT 3476748 DOT 1469372356006 DOT JavaMail DOT yahoo AT mail DOT yahoo DOT com> From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-help AT delorie DOT com]" Date: Mon, 25 Jul 2016 09:22:43 +0300 Message-ID: Subject: Re: [geda-help] NET ENDPOINT To: geda-help AT delorie DOT com Content-Type: text/plain; charset=UTF-8 Reply-To: geda-help AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-help AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi SAMIUDDHIN, On 7/24/16, SAMIUDDHIN (engineersamiuddhin AT yahoo DOT in) [via geda-help AT delorie DOT com] wrote: > Dear Sir, > I want to export gshem schematic without net endpoints(square dot) on > unconnected pins. How to do it? Is there any option to disable it? > You can add the following line to your gschemrc (either in ~/.gEDA, or in your project directory): (print-color-map '((net-endpoint #f))) to disable the net endpoint color or, e.g., if you still want to see it though not so bright, change the value of its alpha channel to make it more transparent, which I usually do for display color map: (print-color-map '((net-endpoint "#ff000060"))) To experiment with this in gschem, you can use the command (display-color-map). Without arguments, it shows the current display color map in the log window. It could be used to see what it looks like. Otherwise the command takes one argument which must be a new colormap. HTH, Vladimir