mirror of
https://github.com/danbulant/node-x11
synced 2026-05-20 12:58:45 +00:00
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
var x11 = require('../../lib/x11');
|
|
x11.createClient(function(display) {
|
|
var X = display.client;
|
|
var wid = X.AllocID();
|
|
X.CreateWindow(wid, display.screen[0].root, 100, 100, 400, 300);
|
|
X.MapWindow(wid);
|
|
});
|