x11

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

x11

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(width: 400, height: 300));
await client.changePropertyString(id, 'WM_NAME', 'x11.dart');
client.mapWindow(id);

client.setCloseDownMode(X11CloseDownMode.retainPermanent);

await client.close();
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.