From 407a9f7780a13a8b75d60ce130da5ffa3a4b39f1 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 23 Nov 2025 21:15:54 +0100 Subject: [PATCH] Update terminal-panel.tsx --- AppImage/components/terminal-panel.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/AppImage/components/terminal-panel.tsx b/AppImage/components/terminal-panel.tsx index c88d941..d825567 100644 --- a/AppImage/components/terminal-panel.tsx +++ b/AppImage/components/terminal-panel.tsx @@ -360,13 +360,16 @@ export const TerminalPanel: React.FC = ({ websocketUrl, onCl ]).then(([Terminal, FitAddon]) => [Terminal, FitAddon]) const term = new TerminalClass({ - rendererType: isMobile ? "dom" : "canvas", - fontFamily: 'Consolas, "DejaVu Sans Mono", "Liberation Mono", "Courier New", Courier, monospace', - fontSize: 16, + rendererType: isMobile ? "dom" : "canvas", + fontFamily: '"Courier", "Courier New", "Liberation Mono", "DejaVu Sans Mono", monospace', + fontSize: 16, + lineHeight: 1, cursorBlink: true, scrollback: 2000, disableStdin: false, customGlyphs: false, + fontWeight: "400", + fontWeightBold: "700", theme: { background: "#000000", foreground: "#ffffff", @@ -388,8 +391,6 @@ export const TerminalPanel: React.FC = ({ websocketUrl, onCl brightMagenta: "#ad7fa8", brightCyan: "#34e2e2", brightWhite: "#eeeeec", - fontWeight: "500", - fontWeightBold: "700", }, })