Tagged Questions
X.org is the display server used in most Unix and Linux distributions.
2
votes
4answers
903 views
Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop)
I'm developing a little side-project to display multiple wallpapers on multiple screens under GNOME (something that apparently can't be done by GNOME itself or anything else). I've figured out how to ...
1
vote
1answer
294 views
Xlib: XGetWindowAttributes always returns 1x1?
I'd like to have width and height of the currently focussed window. The selection of the window works like a charm whereas the height and width are always returning 1.
#include <X11/Xlib.h>
...
1
vote
2answers
880 views
Python/Linux - A function callback every time a key is pressed (regardless of which window has focus)?
I want to write a programme (in python) on Linux (Ubuntu Linux 9.10) that will keep track of how many key presses per second/minute I make. This includes normal letter keys, and ...
1
vote
3answers
722 views
X-server for Windows CE
I'm trying to run an app from a remote X session (Ubuntu, 9.04) on a handheld device powered by Windows Mobile. I want to do this by running an X-server of some description on the mobile device and ...
1
vote
4answers
264 views
The guide to X window system
The X window system (and its popular implementation X.org) is amazing and complex too - client server model, forwarding the display to other systems, support for wide array of devices, primitive ...
0
votes
1answer
31 views
X.org universal graphics driver?
Hopefully this is not a silly question. I'm trying to build a minimal live distribution with the smallest x.org possible. I've found http://privatebox.org/?doc/Xorg-Minimal-HOWTO - which suggests that ...
0
votes
1answer
26 views
X11 XM_NAME type is 'UTF-8' rather than STRING_UTF8
I'm looking at some X11 code that uses XmbTextListToTextProperty to set the WM_NAME property, with encoding style XTextStyle.
...
0
votes
1answer
50 views
X.org X Input driver problem: Linking xf86AddInputDriver function
I am trying to write a mouse driver, on RedHat 6 linux, using the Xf86 API (X Input Driver). When I try to link the following code, I get an error stating:
undefined reference to ...
0
votes
1answer
88 views
Wait until a requested event is finished in X11
I want to resize some window with
XResizeWindow(display, xid, width, height)
which was created by another application and waits until it is really resized.
I tried the following:
...
0
votes
1answer
152 views
xlib integrated debugging (Tracing)
Is there any debugging options built-in in the Xlib (libX11.so)? Can I get list of X11 lib calls?
I want to get full trace of xlib function calls from heavy-multithreaded, closed-source program. It ...