Documentation/devtools/maemo5/x11-utils: Difference between revisions
From Maemo Wiki
Jump to navigationJump to search
imported>kaltsi New page: == Description == A set of basic X window system debugging tools: * xev: monitor X events to a window * xlsatoms: list interned atoms defined on server * xlsclients: list client applicat... |
imported>gryllida m →Description: remove typo |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
{{Devtools}} | |||
== Description == | == Description == | ||
| Line 7: | Line 10: | ||
* xlsclients: list client applications running on a display | * xlsclients: list client applications running on a display | ||
* xprop: list properties of the given window | * xprop: list properties of the given window | ||
* xwininfo: show information | * xwininfo: show information about a given window | ||
== Packages == | == Packages == | ||
| Line 51: | Line 54: | ||
[[Documentation/devtools/maemo5/xrestop|xrestop]] | [[Documentation/devtools/maemo5/xrestop|xrestop]] | ||
[[Category:Fremantle]] | |||
Latest revision as of 04:39, 3 December 2011
| This article documents a developer tool. A list of available devtools is available, together with installation instructions. |
Description
A set of basic X window system debugging tools:
- xev: monitor X events to a window
- xlsatoms: list interned atoms defined on server
- xlsclients: list client applications running on a display
- xprop: list properties of the given window
- xwininfo: show information about a given window
Packages
source: x11-utils
binary: x11-utils
Usage Examples
List all windows on screen:
# xwininfo -tree -root
What application owns the window/dialog/popup covering the screen:
# xprop | grep WM_NAME (and click the window)
Is my window receiving the events it should:
# xwininfo | grep id: (click the window) # xev -id 0xWINDOW_ID
Links
[xev man page](/development/documentation/man_pages/xev.html)
[xprop man page](/development/documentation/man_pages/xprop.html)
[xlsatoms man page](/development/documentation/man_pages/xlsatoms.html)
[xlsclients man page](/development/documentation/man_pages/xlsclients.html)
[xwininfo man page](/development/documentation/man_pages/xwininfo.html)