Mon 21 Jul 22:43:21 CEST 2025
This commit is contained in:
parent
3ab1a1c5f8
commit
9b3b47f1f3
9
js/x11/core/examples/smoketest/listfonts.js
Normal file
9
js/x11/core/examples/smoketest/listfonts.js
Normal 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();
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user