Skip to content

Instantly share code, notes, and snippets.

@alex2844
Created February 18, 2025 06:59
Show Gist options
  • Save alex2844/beb36b62f6b2bd3c23feb08b7526d712 to your computer and use it in GitHub Desktop.
Save alex2844/beb36b62f6b2bd3c23feb08b7526d712 to your computer and use it in GitHub Desktop.
Nerd fonts в терминале chromeos

Chrome OS: шрифты Nerd для терминала

  • Открываем chrome://inspect#other
  • Ищем terminal.html?command
  • Жмем inspect
  • Во вкладке Console вставляем ниже приведенный код
term_.prefs_.set('font-family', 'SauceCodePro NFM, monospace');
term_.prefs_.set(
	'user-css-text', 
	`@font-face {
    	font-family: "SauceCodePro NFM";
    	src: url("https://raw.githubusercontent.com/ryanoasis/nerd-fonts/refs/heads/master/patched-fonts/SourceCodePro/SauceCodeProNerdFontMono-Regular.ttf");
    	font-weight: normal;
	    font-style: normal;
	}
	x-row {
		text-rendering: optimizeLegibility;
		font-variant-ligatures: normal;
	}`
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment