1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/xinput.md

33 lines
592 B
Markdown
Raw Normal View History

# xinput
2016-01-18 00:15:21 +02:00
> List available input devices, query information about a device and change input device settings.
> More information: <https://manned.org/xinput>.
2016-01-18 00:15:21 +02:00
- List all input devices:
`xinput list`
- Disable an input:
`xinput disable {{id}}`
- Enable an input:
`xinput enable {{id}}`
2016-01-18 00:15:21 +02:00
- Disconnect an input from its master:
`xinput float {{id}}`
2016-01-18 00:15:21 +02:00
- Reattach an input as slave to a master:
2016-03-29 08:58:36 +08:00
`xinput reattach {{id}} {{master_id}}`
- List settings of an input device:
`xinput list-props {{id}}`
- Change a setting of an input device:
`xinput set-prop {{id}} {{setting_id}} {{value}}`