As a prerequisite, download and install PxPlus IBM VGA8 font. You can use any other font you like, but monospace fonts look best.
Then, add the below sections into your Windows Terminal settings.json
file (click the settings gear icon in the dropdown to get to the settings page, then click the gear in the bottom left corner to open the json file).
- add the custom schemes:
Note
If you want to remove the default profiles, you should hide them instead of removing them, because otherwise they might be recreated.
Simply set "hidden": true
on any profile that you wish to hide.
-
Create custom profiles using those schemes:
{ // ... "profiles": { "list": [ { "colorScheme": "Retro Green", "commandline": "%SystemRoot%\\System32\\cmd.exe", "cursorColor": "#00FF00", "cursorShape": "filledBox", "experimental.retroTerminalEffect": true, "font": { "face": "PxPlus IBM VGA8" }, "guid": "{def4f3f8-78f7-4a76-983e-fa12e56dcd47}", "hidden": false, "name": "Command Prompt", "opacity": 75, "padding": "5", "startingDirectory": null, "useAcrylic": true }, { "colorScheme": "Retro Orange", "cursorColor": "#FF7300", "cursorShape": "vintage", "experimental.retroTerminalEffect": true, "font": { "face": "PxPlus IBM VGA8" }, "guid": "{05f51e3d-9dc4-44b5-96db-1f66dd2541d5}", "hidden": false, "name": "PowerShell", "opacity": 75, "padding": "5", "source": "Windows.Terminal.PowershellCore", "useAcrylic": true }, // other profiles go here ] // ... }
-
Set one of your custom profiles as default (Optional)
{ // ... // the GUID must match one of the profiles in the profiles list "defaultProfile": "{05f51e3d-9dc4-44b5-96db-1f66dd2541d5}", // ... }