From owner-freebsd-current Sun Jun 23 23:18:06 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id XAA26978 for current-outgoing; Sun, 23 Jun 1996 23:18:06 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id XAA26972; Sun, 23 Jun 1996 23:18:02 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id QAA08457; Mon, 24 Jun 1996 16:13:34 +1000 Date: Mon, 24 Jun 1996 16:13:34 +1000 From: Bruce Evans Message-Id: <199606240613.QAA08457@godzilla.zeta.org.au> To: ache@nagual.ru, andreas@klemm.gtn.com Subject: Re: Syscons CUT&PASTE functionality added... Cc: current@FreeBSD.org, sos@FreeBSD.org Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >> echo -n ' moused' >> vidcontrol -m on >> ( sleep 5; moused -p ${mouseport} -t ${mousetype}) & >Your error is here: vidcontrol works on per-tty basis, >not for all ttys at once. >You must add "vidcontrol -m on" to your .login vidcontrol works on stdin, but most of the things it sets apply to all ttys at once. -m is the main exception. moused at least needs to go to sleep while X is running, so that it doesn't compete with X reading input from the same tty. Bruce