From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2655 invoked by alias); 30 Nov 2014 00:18:04 -0000 Mailing-List: contact cygwin-xfree-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-xfree-owner@cygwin.com Reply-To: cygwin-xfree@cygwin.com Mail-Followup-To: cygwin-xfree@cygwin.com Received: (qmail 2604 invoked by uid 89); 30 Nov 2014 00:18:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp204.alice.it Received: from smtp204.alice.it (HELO smtp204.alice.it) (82.57.200.100) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 30 Nov 2014 00:18:01 +0000 Received: from [192.168.1.102] (87.21.227.179) by smtp204.alice.it (8.6.060.43) (authenticated as angelo.graziosi@alice.it) id 54787F370026E044; Sun, 30 Nov 2014 01:17:28 +0100 Message-ID: <547A6231.9000001@alice.it> Date: Sun, 30 Nov 2014 00:18:00 -0000 From: Angelo Graziosi User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: cygwin-xfree@cygwin.com, nem@emptec.com Subject: Re: [ANNOUNCEMENT] Updated: xinit-1.3.4-1 (Major overhaul of X session handling) Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2014-11/txt/msg00040.txt.bz2 Nem W Schlecht wrote: > Yes, but both of those are applications that have an icon, display a > window, etc. I don't want any of that. I just want X11 to *not* > launch fbpanel and to *not* quit. I don't know if the following can help.. For years I start the X server with a link whose target is: C:\cygwin64\bin\run.exe --quote bash -l -c "rm -rf /tmp/.X*; XWin -multiwindow -clipboard -silent-dup-error 2>/dev/null &" and the "From" field: C:\cygwin64\home\$USER I created it with a script like this MKSHORTCUT=`which mkshortcut 2> /dev/null` RUN=`which run 2> /dev/null` XWINEXE=`which XWin 2> /dev/null` XWINEXE="${XWINEXE}.exe" xwin_link() { echo echo -n "Creating XWin desktop link..." local xwin_exe_ico="${XWINEXE}" local xwin="XWin Server" local xwin_cmd="rm -rf /tmp/.X*;" xwin_cmd+=" XWin -multiwindow -clipboard" xwin_cmd+=" -silent-dup-error 2>/dev/null &" ${MKSHORTCUT} \ -a "--quote bash -l -c \"${xwin_cmd}\"" \ -d "XWin Server" \ -i "${xwin_exe_ico}" \ -n "${xwin}" \ -w "${HOME}" \ ${RUN} echo "done." } xwin_link Now, on W7, I have it on the Applications Bar, and start the x server manually. On XP, I had it in Start - Automatic Run, and the X server started with Windows.. Ciao, Angelo. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/