mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 02:41:46 +00:00
26 lines
509 B
Plaintext
26 lines
509 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# xev
|
|
|
|
> Print contents of X events.
|
|
> More information: <https://gitlab.freedesktop.org/xorg/app/xev>.
|
|
|
|
- Monitor all occurring X events:
|
|
|
|
`xev`
|
|
|
|
- Monitor all X events of the root window instead of creating a new one:
|
|
|
|
`xev -root`
|
|
|
|
- Monitor all X events of a particular window:
|
|
|
|
`xev -id {{window_id}}`
|
|
|
|
- Monitor X events from a given category (can be specified multiple times):
|
|
|
|
`xev -event {{event_category}}`
|