Change default monospace font for Windows 7?

7

3

Is there a way to change the default monospace font for Windows 7, like it is in Ubuntu? It's true that I can configure for every application I use, but I don't want to do that.

I want that every application that defaults to using Ms Console or Lucida Console automatically uses another monospace font that I have installed.

Saad Rehman Shah

Posted 2012-04-13T10:49:32.783

Reputation: 371

1Windows has no such notion of "default" fonts. Many developers pick something like Lucida Console or Courier New (or Consolas for Vista+ systems) simply because they're built into Windows. The next best thing you can do is remove the font that you don't want to see and use the FontSubstitutes registry key to make sure that any application requesting that font gets the one you want instead. – afrazier – 2012-04-13T12:44:24.573

Answers

4

Windows has no such notion of "default" fonts. Many developers pick something like Lucida Console or Courier New (or Consolas for Vista+ systems) simply because they're built into Windows. The next best thing you can do is remove the font that you don't want to see and use the FontSubstitutes registry key to make sure that any application requesting that font gets the one you want instead.

The only part I'm not sure about is if it's going to be easy to remove built-in fonts without tripping Windows File Protection.

afrazier

Posted 2012-04-13T10:49:32.783

Reputation: 21 316

3

TweakFix's answer is the closest thing to an answer for system-wide settings you will get as different applications all have their own settings for this. For some apps you may be able to change it in their .ini files, or their registry entries.

For CMD, you can add additional monospace fonts to the list by editing and then running this .reg file:

Windows Registry Editor Version 5.00
; Installs additonal font in the Windows Command Prompt as per Microsoft KB247815

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont]
"000000"="font name"

paradroid

Posted 2012-04-13T10:49:32.783

Reputation: 20 970

1Then where does Eclipse find a font when you click on "Use System Font" in Preferences -> General / Appearence / Colors and Fonts ? – Fabien – 2014-07-16T13:31:15.413

Thanks. I guess i will have to change it for every application individually. – Saad Rehman Shah – 2012-04-13T11:40:41.707