From owner-freebsd-questions Thu Oct 14 7:14:14 1999 Delivered-To: freebsd-questions@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id E6BC314C32 for ; Thu, 14 Oct 1999 07:14:08 -0700 (PDT) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 3.037 #1) id 11bldj-0000zx-00; Thu, 14 Oct 1999 16:13:55 +0200 From: Sheldon Hearn To: Synapse Engineering Cc: freebsd-questions@FreeBSD.ORG Subject: Re: User profile under X In-reply-to: Your message of "Wed, 13 Oct 1999 13:11:05 EST." <3804CB39.BAE933A1@mem.net> Date: Thu, 14 Oct 1999 16:13:55 +0200 Message-ID: <3840.939910435@axl.noc.iafrica.com> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 13 Oct 1999 13:11:05 EST, Synapse Engineering wrote: > When I start an XTerm session, I have to type source .profile to get my > environment variables set. Can I create a file in my home dir that will > tell X to source my profile when X is started? If Jonathan Chen's advice doesn't sort your problem out, then you may be running some shell like bash, which looks for its own .bashrc instead of .profile . If that's the case, you could create yourself the following .bashrc file: if [ -f $HOME/.profile ] ; then . $HOME/.profile fi Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message