The default output of xinput list is hard to parse by scripts. Provide a
--name-only option to print the device name only, without any other
information.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
Tested-by: Dirk Wallenstein <halsmit@t-online.de>
require a device name.
.PP
.TP 8
require a device name.
.PP
.TP 8
-.B --list [--short || --long] [\fIdevice\fP]
+.B --list [--short || --long || --name-only] [\fIdevice\fP]
If no argument is given list all the input devices. If an argument is given,
show all the features of \fIdevice\fP.
If --long is provided, the output includes detailed information about the
capabilities of each devices. Otherwise, or if --short is provided, only the
device names and some minimal information is listed.
If no argument is given list all the input devices. If an argument is given,
show all the features of \fIdevice\fP.
If --long is provided, the output includes detailed information about the
capabilities of each devices. Otherwise, or if --short is provided, only the
device names and some minimal information is listed.
+If --name-only is provided, the output is limited to the device names. One
+device name is listed per line. Note that the order the devices are listed
+is undefined.
.PP
.TP 8
.B --get-feedbacks \fIdevice\fP
.PP
.TP 8
.B --get-feedbacks \fIdevice\fP
enum print_format {
FORMAT_SHORT,
enum print_format {
FORMAT_SHORT,
+ FORMAT_LONG,
+ FORMAT_NAME
XValuatorInfoPtr v;
XAxisInfoPtr a;
XValuatorInfoPtr v;
XAxisInfoPtr a;
+ if (format == FORMAT_NAME)
+ {
+ printf("%s\n", info->name);
+ return;
+ }
+
printf("\"%s\"\tid=%ld\t[", info->name, info->id);
switch (info->use) {
printf("\"%s\"\tid=%ld\t[", info->name, info->id);
switch (info->use) {
static void
print_info_xi2(Display* display, XIDeviceInfo *dev, enum print_format format)
{
static void
print_info_xi2(Display* display, XIDeviceInfo *dev, enum print_format format)
{
+ if (format == FORMAT_NAME)
+ {
+ printf("%s\n", dev->name);
+ return;
+ }
+
printf("%-40s\tid=%d\t[", dev->name, dev->deviceid);
switch(dev->use)
{
printf("%-40s\tid=%d\t[", dev->name, dev->deviceid);
switch(dev->use)
{
dev = &info[i];
if (dev->use == XIMasterPointer || dev->use == XIMasterKeyboard)
{
dev = &info[i];
if (dev->use == XIMasterPointer || dev->use == XIMasterKeyboard)
{
- if (dev->use == XIMasterPointer)
- printf("⎡ ");
- else
- printf("⎣ ");
+ if (format == FORMAT_SHORT || format == FORMAT_LONG)
+ {
+ if (dev->use == XIMasterPointer)
+ printf("⎡ ");
+ else
+ printf("⎣ ");
+ }
print_info_xi2(display, dev, format);
for (j = 0; j < ndevices; j++)
print_info_xi2(display, dev, format);
for (j = 0; j < ndevices; j++)
if ((sd->use == XISlavePointer || sd->use == XISlaveKeyboard) &&
(sd->attachment == dev->deviceid))
{
if ((sd->use == XISlavePointer || sd->use == XISlaveKeyboard) &&
(sd->attachment == dev->deviceid))
{
- printf("%s ↳ ", dev->use == XIMasterPointer ? "⎜" : " ");
+ if (format == FORMAT_SHORT || format == FORMAT_LONG)
+ printf("%s ↳ ", dev->use == XIMasterPointer ? "⎜" : " ");
print_info_xi2(display, sd, format);
}
}
print_info_xi2(display, sd, format);
}
}
format = FORMAT_SHORT;
else if (strcmp(argv[0], "--long") == 0)
format = FORMAT_LONG;
format = FORMAT_SHORT;
else if (strcmp(argv[0], "--long") == 0)
format = FORMAT_LONG;
+ else if (strcmp(argv[0], "--name-only") == 0)
+ format = FORMAT_NAME;
- "[--short || --long] [<device name>...]",
+ "[--short || --long || --name-only] [<device name>...]",