Open
Description
Here's the ANSI escape code for getting mouse events:
ESC [ ? 1000 h
X11 Mouse Reporting (default off): Set reporting mode to 2
(or reset to 0)—see below.
Mouse tracking
The mouse tracking facility is intended to return
xterm(1)-compatible mouse status reports. Because the console
driver has no way to know the device or type of the mouse, these
reports are returned in the console input stream only when the
virtual terminal driver receives a mouse update ioctl. These
ioctls must be generated by a mouse-aware user-mode application
such as the gpm(8) daemon.
The mouse tracking escape sequences generated by xterm(1) encode
numeric parameters in a single character as value+040. For
example, '!' is 1. The screen coordinate system is 1-based.
The X10 compatibility mode sends an escape sequence on button
press encoding the location and the mouse button pressed. It is
enabled by sending ESC [ ? 9 h and disabled with ESC [ ? 9 l. On
button press, xterm(1) sends ESC [ M bxy (6 characters). Here b
is button-1, and x and y are the x and y coordinates of the mouse
when the button was pressed. This is the same code the kernel
also produces.
Normal tracking mode (not implemented in Linux 2.0.24) sends an
escape sequence on both button press and release. Modifier
information is also sent. It is enabled by sending ESC [ ? 1000
h and disabled with ESC [ ? 1000 l. On button press or release,
xterm(1) sends ESC [ M bxy. The low two bits of b encode button
information: 0=MB1 pressed, 1=MB2 pressed, 2=MB3 pressed,
3=release. The upper bits encode what modifiers were down when
the button was pressed and are added together: 4=Shift, 8=Meta,
16=Control. Again x and y are the x and y coordinates of the
mouse event. The upper left corner is (1,1).
Here's using it, with the reporting turned off afterwards, otherwise mouse events will still continue to be captured:
printf '%s\n' $'\e[?1000h mouse reporting enabled'
function stop_listening_to_mouse {
printf '%s\n' $'\e[?1000l mouse reporting disabled'
trap - EXIT SIGINT SIGTERM
}
trap stop_listening_to_mouse EXIT SIGINT SIGTERM
while read -n 6; do printf '%s\n' ' mouse event'; done
One must then know how to parse the responses, which occurs for scrolls and clicks. Example output:
mouse reporting enabled
^[[M "!^[[M#"! mouse event
^[[M#"! mouse event
^[[M $!^[[M#$! mouse event
^[[M#$! mouse event
^[[M '!^[[M#'! mouse event
^[[M#'! mouse event
^[[M *!^[[M#*! mouse event
^[[M#*! mouse event
^[[M !"^[[M#!" mouse event
^[[M#!" mouse event
^[[M ""^[[M#"" mouse event
^[[M#"" mouse event
^[[M $"^[[M#$" mouse event
^[[M#$" mouse event
^C mouse reporting disabled
Could be implemented in read-key
with an optional --mouse
flag, in which case it could be translated to say:
scroll:x,y
click:x,y