Next 1.2 X11::Protocol Prev

X11::Protocol

CPAN module to write X clients in a very low level.
use X11::Protocol; my $x = X11::Protocol->new(); my $win = $x->new_rsrc; $x->CreateWindow( $win, $x->root, 'InputOutput', $x->root_depth, 'CopyFromParent', (500, 500, 100, 200), 10, 'name' => 'My first window', ); # ...

Next X Window Managers and Perl Prev