2003-01-20 00:25:36 +03:00
|
|
|
.\" $NetBSD: wsmoused.8,v 1.8 2003/01/19 21:25:43 atatat Exp $
|
2002-06-27 03:13:04 +04:00
|
|
|
.\"
|
2002-06-28 02:53:12 +04:00
|
|
|
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
|
2002-06-27 03:13:04 +04:00
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
.\" by Julio Merino.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
.\" contributors may be used to endorse or promote products derived
|
|
|
|
.\" from this software without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
.\" POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
.\"/
|
|
|
|
.Dd June 26, 2002
|
|
|
|
.Dt WSMOUSED 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm wsmoused
|
|
|
|
.Nd mouse console daemon
|
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm
|
|
|
|
.Op Fl d Ar device
|
2002-06-28 02:53:12 +04:00
|
|
|
.Op Fl f Ar fifo
|
2002-12-25 22:13:53 +03:00
|
|
|
.Op Fl ln
|
2002-06-27 03:13:04 +04:00
|
|
|
.Op Fl X Ar number
|
2002-08-20 20:55:28 +04:00
|
|
|
.Op Fl x Ar number
|
|
|
|
.Op Fl y Ar number
|
2002-06-27 03:13:04 +04:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
daemon provides mouse support in console, allowing copying and pasting
|
2002-06-28 02:53:12 +04:00
|
|
|
text. The left mouse button is used to select text when held and you
|
2002-06-27 03:13:04 +04:00
|
|
|
use the right button to paste it in the active console.
|
|
|
|
.Pp
|
|
|
|
Supported options are as follows:
|
2002-06-28 02:53:12 +04:00
|
|
|
.Bl -tag -width XXXnumberX
|
2002-06-27 03:13:04 +04:00
|
|
|
.It Fl d Ar device
|
|
|
|
specifies which driver to use as the mouse device. It defaults to
|
|
|
|
.Pa /dev/wsmouse .
|
2002-06-28 02:53:12 +04:00
|
|
|
.It Fl f Ar fifo
|
|
|
|
is used to specify an optional fifo where to redirect all mouse events
|
|
|
|
(even if they have been processed). By default, no fifo is used.
|
2002-12-25 22:13:53 +03:00
|
|
|
.It Fl l
|
|
|
|
swaps mouse buttons, specially useful for left handed users.
|
2002-06-28 02:53:12 +04:00
|
|
|
.It Fl n
|
|
|
|
do not fork in the background (for debugging purposes).
|
2002-06-27 03:13:04 +04:00
|
|
|
.It Fl X Ar number
|
|
|
|
tells
|
|
|
|
.Nm
|
|
|
|
which virtual console holds the X server (if any). The argument
|
2002-06-28 02:53:12 +04:00
|
|
|
specifies the console number (the same found in
|
2002-06-27 03:13:04 +04:00
|
|
|
.Pa /dev/ttyE? ,
|
2002-06-28 02:53:12 +04:00
|
|
|
where the ? appears).
|
2002-06-27 03:13:04 +04:00
|
|
|
.Nm
|
|
|
|
will stop processing events when entering this console and will
|
|
|
|
continue its job when you return to any other terminal.
|
2002-08-20 20:55:28 +04:00
|
|
|
.It Fl x Ar number
|
|
|
|
x slowdown. This positive integer specifies how many events in the x
|
|
|
|
direction should be ignored before changing the current column. It
|
|
|
|
defaults to 0.
|
|
|
|
.It Fl y Ar number
|
|
|
|
y slowdown. This positive integer specifies how many events in the y
|
|
|
|
direction should be ignored before changing the current row. It
|
|
|
|
defaults to 3.
|
2002-06-27 03:13:04 +04:00
|
|
|
.El
|
|
|
|
.Sh FILES
|
2002-06-28 02:53:12 +04:00
|
|
|
.Bl -tag -width /dev/wsdisplayXXX -compact
|
2002-06-27 19:12:23 +04:00
|
|
|
.It Pa /dev/ttyE[0-n]
|
2002-06-27 03:13:04 +04:00
|
|
|
tty devices
|
2002-06-27 19:12:23 +04:00
|
|
|
.It Pa /dev/ttyEstat
|
2002-06-27 03:13:04 +04:00
|
|
|
wsdisplay status notification device
|
2002-08-20 20:55:28 +04:00
|
|
|
.It Pa /dev/wsmouse0
|
|
|
|
mouse control device
|
2002-06-27 03:13:04 +04:00
|
|
|
.El
|
|
|
|
.Sh EXAMPLES
|
|
|
|
The following are just a few examples of
|
|
|
|
.Nm
|
|
|
|
and its functionality.
|
|
|
|
.Pp
|
|
|
|
.Dl wsmoused -X 4
|
|
|
|
.Pp
|
|
|
|
Starts the mouse dameon, telling it that ttyE4 holds a X server.
|
|
|
|
.Pp
|
|
|
|
.Dl wsmoused -d /dev/wsmouse1 -f /tmp/mousefifo
|
|
|
|
.Pp
|
|
|
|
Uses
|
|
|
|
.Pa /dev/wsmouse1
|
|
|
|
device as the mouse and
|
|
|
|
.Pa /tmp/mousefifo
|
|
|
|
as the fifo where all mouse data is redirected.
|
|
|
|
.Sh SECURITY CONSIDERATIONS
|
|
|
|
Be ABSOLUTELY sure that
|
|
|
|
.Pa /dev/ttyE*
|
|
|
|
devices have restrictive permissions as the mouse uses some functions
|
|
|
|
that could allow terminal snooping if improperly set.
|
|
|
|
.Sh NOTES
|
2002-06-28 02:53:12 +04:00
|
|
|
The mouse cursor is only visible for a short time. It will disappear
|
2002-06-27 03:13:04 +04:00
|
|
|
when you stop moving it to avoid console corruption if there is any
|
|
|
|
output while it is visible.
|
|
|
|
.Pp
|
2002-06-28 02:53:12 +04:00
|
|
|
.Cd options WSDISPLAY_CHARFUNCS
|
|
|
|
is needed in your kernel configuration file in
|
2002-06-27 03:13:04 +04:00
|
|
|
order to get mouse console support.
|
|
|
|
.Pp
|
|
|
|
When you return from the X screen to another terminal there is a small
|
|
|
|
time delay until the mouse works again. The delay is needed to allow X
|
|
|
|
to close the mouse device properly.
|
2002-06-27 20:10:03 +04:00
|
|
|
.Pp
|
|
|
|
It's needed that you change the getty program which runs in the first
|
|
|
|
virtual terminal to use
|
|
|
|
.Pa /dev/ttyE0
|
|
|
|
instead of
|
|
|
|
.Pa /dev/console .
|
|
|
|
If you do not change this, you may have problems.
|
|
|
|
You need to edit
|
|
|
|
.Pa /etc/ttys
|
|
|
|
and
|
|
|
|
.Pa /etc/wscons.conf
|
|
|
|
to make this change.
|
2002-06-27 03:13:04 +04:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr wscons 4 ,
|
|
|
|
.Xr wsdisplay 4 ,
|
2002-06-27 20:10:03 +04:00
|
|
|
.Xr wsmouse 4 ,
|
|
|
|
.Xr ttys 5 ,
|
2002-10-26 01:02:45 +04:00
|
|
|
.Xr wscons.conf 5 ,
|
|
|
|
.Xr moused 8
|
2002-06-27 03:13:04 +04:00
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
command first appeared in
|
2003-01-20 00:25:36 +03:00
|
|
|
.Nx 2.0 .
|