X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:subject:from:to:reply-to :mime-version:content-type:content-transfer-encoding; q=dns; s= default; b=KHl9NA0z3U0wjcxw1cybBLsCLKwksDqL1ALAYn37XJA5uWQ+pOk8L J9kgEemDROu5sw1rxCfimYB+vJrLKe4y8GRFjL/KyaqYaM8/nsCEQ7gK2ZRxX+K5 ZYEqMNsBcjBoum5MTuXjOoypMV9XIfiLJl3b+APpNpFUQNcu5ICG8g= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:subject:from:to:reply-to :mime-version:content-type:content-transfer-encoding; s=default; bh=MBd3tFmVTT33Z1ucyftiwrvCT00=; b=PCz1W/fcJna3pfc1aG57IQl5Pfg2 uw24H888ksWJiWbbZSkj0ajPOqrtxtlWSwTprIIurG3/reZogwdhBDJ1tIkKYyHR bXnnWKG5MhtsZUjgh13o3MRwB8M9Cv3d62lG7A9BUzFg2uyt2E4tzEU8bzBxR32Q wNBGeABuGAM/bmQ= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.8 required=5.0 tests=BAYES_50,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx-rz-2.rrze.uni-erlangen.de X-RRZE-Submit-IP: 131.188.11.38 Message-ID: Date: Tue, 13 Oct 2015 16:16:11 +0200 Subject: loading VT100 Font in stand alone program From: reinhard DOT neder AT fau DOT de To: cygwin AT cygwin DOT com Reply-To: reinhard DOT neder AT fau DOT de User-Agent: SquirrelMail/1.4.23 [SVN] MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi Everybody, I have written a program "kuplot" that runs inside an X-window terminal through a script: #!/bin/sh if( /bin/ps | /bin/grep XWin ); then export DISPLAY=':0'; /bin/xterm -rightbar -sb -pob -title "kuplot secondary window" -e /bin/kuplot; else /bin/rm -f /tmp/.X*-lock /bin/xinit "/bin/xterm" -rightbar -sb -pob -title "kuplot primary window exit last" -e /bin/kuplot -- "/usr/bin/XWin" :0 -multiwindow -logfile /dev/null; fi If I start this script from within CYGWIN (both 64 and 32 bit) the VT menu appears at the top of my Xterm, and I can change the font size. If I start the program from the desktop icon, I do get the VT100 menu, but an error message of: /bin/xterm: cannot load font 'misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso10646-1' and a similar message if I try to change the font size. The program was installed into a separate folder at C:\Program files (x86) and within this I have folders bin ! quite a few of the /bin/*dll and /bin/*exe etc/X11 ! exact recursive copy of /etc/X11 in cygwin including fonts/* (only gzipped filesthough?) usr/share/terminfo ! exact recursive copy /usr/share/X11 ! exact recursive copy I seem to be missing the proper link to the VT100 fonts , where would I have to look for that? Other functionality of the VT Options like switching to a blinking cursor work fine. Thanks Reinhard Neder -- Prof. Dr. Reinhard Neder Kristallographie und Strukturphysik Universität Erlangen Staudtststr. 3; 91058 Erlangen tel. +49-9131-8525191 fax +49-9131-8525182 -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple