// ==UserScript==
// @name         Coder Nerd Font Fix
// @namespace    coder-nerd-font
// @version      1.0
// @description  Use JetBrainsMono Nerd Font in Coder web terminals
// @match        https://your_url/terminal*
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

GM_addStyle(`
  .xterm,
  .xterm * {
    font-family: "JetBrainsMono Nerd Font", monospace !important;
  }
`);

This script fixes coder cli font in browser. This is because I want to use terminal inside coder via browser sometimes and font should be correct to display my icons.

Coder Cli
Home | Tampermonkey