Created
September 5, 2024 21:33
-
-
Save johnwyles/0ec11d6180c1efe847e6c40df6b975b2 to your computer and use it in GitHub Desktop.
Change the Windows default font back to the original values that shipped with Windows since we unset them in `newfont.reg`
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 | |
; Here we are setting back all of the Seoge UI fonts to their respective fonts | |
; by their filename because these were all unset in `newfont.reg` | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts] | |
"Segoe UI (TrueType)"="segoeui.ttf" | |
"Segoe UI Black (TrueType)"="seguibl.ttf" | |
"Segoe UI Black Italic (TrueType)"="seguibli.ttf" | |
"Segoe UI Bold (TrueType)"="segoeuib.ttf" | |
"Segoe UI Bold Italic (TrueType)"="segoeuiz.ttf" | |
"Segoe UI Emoji (TrueType)"="seguiemj.ttf" | |
"Segoe UI Historic (TrueType)"="seguihis.ttf" | |
"Segoe UI Italic (TrueType)"="segoeuii.ttf""Segoe UI Light (TrueType)"="segoeuil.ttf" | |
"Segoe UI Light Italic (TrueType)"="seguili.ttf" | |
"Segoe UI Semibold (TrueType)"="seguisb.ttf" | |
"Segoe UI Semibold Italic (TrueType)"="seguisbi.ttf" | |
"Segoe UI Semilight (TrueType)"="segoeuisl.ttf" | |
"Segoe UI Semilight Italic (TrueType)"="seguisli.ttf" | |
"Segoe UI Symbol (TrueType)"="seguisym.ttf" | |
"Segoe MDL2 Assets (TrueType)"="segmdl2.ttf" | |
"Segoe Print (TrueType)"="segoepr.ttf" | |
"Segoe Print Bold (TrueType)"="segoeprb.ttf" | |
"Segoe Script (TrueType)"="segoesc.ttf" | |
"Segoe Script Bold (TrueType)"="segoescb.ttf" | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes] | |
"Segoe UI"=- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment