From 3de000bc94f472f2c600d352f33f1b4e0b7d1f69 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 23 Nov 2025 19:41:36 +0100 Subject: [PATCH] Update terminal-panel.tsx --- AppImage/components/terminal-panel.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/AppImage/components/terminal-panel.tsx b/AppImage/components/terminal-panel.tsx index ee7162e..cd3d534 100644 --- a/AppImage/components/terminal-panel.tsx +++ b/AppImage/components/terminal-panel.tsx @@ -360,12 +360,13 @@ export const TerminalPanel: React.FC = ({ websocketUrl, onCl ]).then(([Terminal, FitAddon]) => [Terminal, FitAddon]) const term = new TerminalClass({ + fontFamily: '"DejaVu Sans Mono", "Liberation Mono", "Menlo", "Consolas", "Courier New", monospace', rendererType: isMobile ? "dom" : "canvas", - fontFamily: '"DejaVu Sans Mono", "Liberation Mono", "Courier New", Courier, monospace', - fontSize: isMobile ? 13 : 14, + fontSize: isMobile ? 11 : 14, cursorBlink: true, scrollback: 2000, disableStdin: false, + customGlyphs: false, theme: { background: "#000000", foreground: "#ffffff",