jam/js/x11/examples/simple/hello.js

6 lines
187 B
JavaScript
Raw Normal View History

2025-07-21 23:06:08 +02:00
var x11 = require('../../lib');
x11.createClient(function(err, display) {
console.log('succesfully connected to \"' + display.vendor + '\" server');
display.client.terminate();
});