Created
September 5, 2024 21:29
-
-
Save johnwyles/8ffeae9e790e18ac2feb916b9d691b00 to your computer and use it in GitHub Desktop.
Change the Windows default font to a font we choose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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