From owner-freebsd-x11@FreeBSD.ORG Wed Feb 2 19:28:45 2005 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4019D16A4CE for ; Wed, 2 Feb 2005 19:28:45 +0000 (GMT) Received: from niobe.ijs.si (mail.ijs.si [193.2.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4420743D58 for ; Wed, 2 Feb 2005 19:28:44 +0000 (GMT) (envelope-from dejan.lesjak@ijs.si) Received: from localhost (localhost.ijs.si [127.0.0.1]) by niobe.ijs.si (Postfix) with ESMTP id 767701DD68B; Wed, 2 Feb 2005 20:28:43 +0100 (CET) Received: from niobe.ijs.si ([127.0.0.1]) by localhost (niobe.ijs.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 44406-17; Wed, 2 Feb 2005 20:28:41 +0100 (CET) Received: from metatron.ijs.si (metatron.ijs.si [193.2.4.152]) by niobe.ijs.si (Postfix) with ESMTP id 965EB1DD61F; Wed, 2 Feb 2005 20:28:40 +0100 (CET) Received: from idefix.ijs.si (idefix.ijs.si [193.2.4.33]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by metatron.ijs.si (Postfix) with ESMTP id 39C031C00094; Wed, 2 Feb 2005 20:28:40 +0100 (CET) From: Dejan Lesjak To: freebsd-x11@freebsd.org Date: Wed, 2 Feb 2005 20:28:38 +0100 User-Agent: KMail/1.7.2 References: <200502022358.00177.guitar@jazzcafe.no-ip.org> In-Reply-To: <200502022358.00177.guitar@jazzcafe.no-ip.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200502022028.39452.dejan.lesjak@ijs.si> X-Virus-Scanned: amavisd-new at ijs.si cc: CryBaby Subject: Re: How can I start X-Window directly after boot X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Feb 2005 19:28:45 -0000 On Wednesday 02 of February 2005 16:58, CryBaby wrote: > Thank you, Dejan. > > I am work fine now, but a daemon problem. > > Before I know kdm from here, I always startx in console. > So, ".xinitrc" is work fine for me. > > [CryBaby]~> less .xinitrc > #!/bin/sh > # > ... > export LC_ALL=zh_TW.Big5 > export LC_CTYPE=zh_TW.Big5 > export LANG=zh_TW.Big5 > ... > gcin& > kmix& > amor& > ... > exec startkde > > > After I know kdm from here, I start KDE by KDM. > So, I copy the setup to ".xsession" > My Locale and other setup is fine, but the daemon program - "gcin, > kmix,amor" > > [CryBaby]~> ps -ax | grep amor > [CryBaby]~> ps -ax | grep kmix > [CryBaby]~> ps -ax | grep gcin > [CryBaby]~> > > What I have to do ??? What 'Session type' did you choose in kdm? IIRC it has to be 'Custom' for kdm to execute .xsession. You can try putting a line like 'echo yes >/tmp/foo' before 'exec startkde' line and then see if /tmp/foo exists to know whether .xsession gets executed. Dejan