Skip to content

Instantly share code, notes, and snippets.

View johnwyles's full-sized avatar
👨‍💻
RPi k8s cluster fun

John Wyles johnwyles

👨‍💻
RPi k8s cluster fun
View GitHub Profile
@johnwyles
johnwyles / oldfont.reg
Created September 5, 2024 21:33
Change the Windows default font back to the original values that shipped with Windows since we unset them in `newfont.reg`
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"
@johnwyles
johnwyles / newfont.reg
Created September 5, 2024 21:29
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)"=""