From owner-freebsd-questions Sat Apr 25 15:24:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01736 for freebsd-questions-outgoing; Sat, 25 Apr 1998 15:24:21 -0700 (PDT) (envelope-from owner-freebsd-questions@FreeBSD.ORG) Received: from lucy.loco.net (lucy.bedford.net [206.99.145.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA01687 for ; Sat, 25 Apr 1998 15:24:08 -0700 (PDT) (envelope-from listread@bedford.net) Received: (from listread@localhost) by lucy.loco.net (8.8.5/8.8.4) id SAA01824; Sat, 25 Apr 1998 18:19:14 -0400 Message-Id: <199804252219.SAA01824@lucy.loco.net> Subject: Re: Changing the default x-windows manager To: barry.monk@gnet.tn (Barry Monk) Date: Sat, 25 Apr 1998 18:19:14 -0400 (EDT) Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: <000c01bd703e$ba6b0120$174d5fc1@default> from Barry Monk at "Apr 25, 98 01:33:27 pm" From: CyberPeasant Reply-To: djv@bedford.net X-no-archive: yes X-Mailer: ELM [version 2.4ME+ PL15 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > Hi, I'm running FreeBSD2.2.5, and I have upgraded to Xfree3.3.2. I have a solid > BSD system, but I want to change from the poor TWM display manager to > one of the better ones such as FVWM2 or 95. I understand I have to alter a config > file to do this, but can't find which one, I cannot access the newsgroups as I live > overseas and my ISP does not yet provide them. I have searched the FAQ's etc > but cannot find the answer. After this I plan to port Netscape from the CD, but I > have been informed that my modem is incompatible withBSD. It is a US Robotics > sportster win modem 33.3kb. I plan to convert fully to BSD, for all my computing > but would like to change a little hardware as possible, so can I utilize this modem? Sell it to a windoze user. To my knowledge no *BSD or Linux supports those damn things. The reason is that it uses the /CPU!!!/ for all its computation. This plays hob with a real OS. Get a nice external modem (now would be an excuse to go to 56K) with a 16550 serial port, and you'll be happier. Non-support of winmodems is a feature, not a bug. > Any help you can offer would be greatly appreciated. > > Kind regards , Barry Monk Window mgrs: The file to edit is /usr/X11R6/lib/X11/xinit/xinitrc Down at the bottom, there are lines like: # start some nice programs twm & xclock -geometry 50x50-1+1 & xterm -geometry 80x50+494+51 & xterm -geometry 80x20+494-0 & exec xterm -geometry 80x66+0+0 -name login You might change it to: # start some nice programs # Start fvwm2 if I can find it: if [ -f /usr/X11R6/bin/fvwm2 ]; then exec /usr/X11R6/bin/fvwm2 fi # you won't get here if fvwm2 exists and can be exec'd # Ooops, no fvwm2, fallback to twm: twm & xclock -geometry 50x50-1+1 & xterm -geometry 80x50+494+51 & xterm -geometry 80x20+494-0 & exec xterm -geometry 80x66+0+0 -name login For configuring fvwm2 see its man page. Dave To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message