x11 0.1.1 copy "x11: ^0.1.1" to clipboard
x11: ^0.1.1 copied to clipboard

outdated

A native Dart implementation of the X window system protocol, version 11 (X11).

Pub Package

A native Dart implementation of the X window system protocol, version 11 (X11).

import 'package:x11/x11.dart';

var client = X11Client();
await client.connect();

var id = client.generateId();
client.createWindow(id, client.screens[0].window, X11Rectangle(0, 0, 400, 300));
await client.changePropertyString(id, 'WM_NAME', 'x11.dart');
client.mapWindow(id);

client.setCloseDownMode(X11CloseDownMode.retainPermanent);

await client.close();
6
likes
0
points
152
downloads

Publisher

unverified uploader

Weekly Downloads

A native Dart implementation of the X window system protocol, version 11 (X11).

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on x11