Skip to content

Instantly share code, notes, and snippets.

@johnwyles
Created September 5, 2024 21:29
Show Gist options
  • Save johnwyles/8ffeae9e790e18ac2feb916b9d691b00 to your computer and use it in GitHub Desktop.
Save johnwyles/8ffeae9e790e18ac2feb916b9d691b00 to your computer and use it in GitHub Desktop.
Change the Windows default font to a font we choose
Windows Registry Editor Version 5.00
; In Windows 10 the "Segoe UI" font family is the default that shipped with Windows
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Segoe UI (TrueType)"=""
"Segoe UI Bold (TrueType)"=""
"Segoe UI Bold Italic (TrueType)"=""
"Segoe UI Italic (TrueType)"=""
"Segoe UI Light (TrueType)"=""
"Segoe UI Semibold (TrueType)"=""
"Segoe UI Symbol (TrueType)"=""
; NOTE: Here is where we store the PROPER FULL NAME of the font as it appears in font settings
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
"Segoe UI"="Hack Nerd Font Mono"
; After applying this restart your machine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment