Skip to content

Powerline fonts

Daniel Imms edited this page Apr 2, 2021 · 1 revision

Helper to print powerline characters in the current font:

for (let i = 0xA0; i <= 0xD6; i++) {
  term.write(String.fromCharCode(0xE000 + i) + ' ');
}