forked from PowerFeature/WT64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofiles.json
63 lines (59 loc) · 2.06 KB
/
profiles.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Download Font at https://www.dafont.com/commodore-64.font
// Font by Devin Cook http://www.devincook.com/
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles
},
"list":
[
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff42bc}",
"name": "WT64",
"hidden": false,
"experimental.retroTerminalEffect": false,
"colorScheme": "c64",
"fontFace": "Commodore 64",
"fontSize": 16,
"padding": "90,90,90,90",
"tabTitle": "WINDOWS TERMINAL64",
"cursorShape": "filledBox",
"cursorColor": "#a5a5ff",
"backgroundImage": "C:\\[INSERT YOUR REPO PATH HERE]\\P64_bg.png",
"backgroundImageStretchMode": "fill",
"commandline": "C:\\Program Files\\PowerShell\\7\\pwsh.exe -NoExit C:\\[INSERT YOUR REPO PATH HERE]\\reset.ps1",
"startingDirectory" : "%USERPROFILE%",
"icon": "C:\\[INSERT YOUR REPO PATH HERE]\\icon.png"
}
]
},
// Add custom color schemes to this array
"schemes": [{
"name": "c64",
"background": "#4242e7",
"foreground": "#a5a5ff" ,
"selectionBackground": "#a5a5ff",
"black": "#000000",
"blue": "#4242e7",
"brightBlue": "#a5a5ff",
"brightCyan": "#AAFFEE",
"brightGreen": "#AAFF66",
"brightPurple": "#CC44CC",
"brightRed": "#FF7777",
"brightWhite": "#FFFFFF",
"brightYellow": "#EEEE77",
"cyan": "#AAFFEE",
"green": "#00CC55",
"purple": "#CC44CC",
"red": "#880000",
"white": "#FFFFFF",
"brightBlack": "#000000",
"yellow": "#EEEE77"
}],
"keybindings": []
}