mirror of
https://github.com/danbulant/node-x11
synced 2026-06-12 03:00:19 +00:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
var x11 = require('../../lib');
|
|
var X = x11.createClient(function(err, display) {
|
|
X.ListFonts('*', 1000, function(err, list) {
|
|
list.forEach(function(ext) {
|
|
console.log(ext);
|
|
});
|
|
X.terminate();
|
|
});
|
|
});
|