Mon 21 Jul 22:43:21 CEST 2025

This commit is contained in:
sbosse 2025-07-21 23:01:20 +02:00
parent 3ab1a1c5f8
commit 9b3b47f1f3

View File

@ -0,0 +1,9 @@
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();
});
});