You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Windows 10, the titlebar color can be set system-wide in Settings → Personalization → Colors → Custom color → More → #262835.
@@ -55,29 +55,33 @@ In Windows 10, the titlebar color can be set system-wide in Settings → Persona
55
55
56
56
## Frequently Asked Questions
57
57
58
-
**What's the PowerShell `$profile` file?**
59
-
60
-
This is a PowerShell file that's run when a PowerShell session is started, similar to a `.bashrc`. Type `$profile` in a PowerShell window to see the path. See https://ss64.com/ps/syntax-profile.html for more detail.
61
-
62
-
**After applying the theme, other consoles don't always have the right colors.**
63
-
64
-
There are two possible reasons for this:
65
-
66
-
1. Step 3 from the theme installation was not followed; it's a requirement for the way that the windows console properties save settings.
67
-
1. The shortcut used to apply the theme was different from shortcut used to open the console.
68
-
- The windows console stores its font / color settings in per-shortcut. You can see / delete the special cases in the registry. Go to `\HKEY_CURRENT_USER\Console\` and delete the subkeys so the default values in the `Console` key are used.
69
-
70
-
**What's that crazy cmd.exe prompt string?**
71
-
72
-
The cmd.exe prompt value can be broken down into the following [ANSI escape sequences](http://ascii-table.com/ansi-escape-sequences.php):
73
-
74
-
-`$E[1;32;40m` - normal text with a green foreground and black background
75
-
-`→ ` - unicode arrow and space
76
-
-`$E[1;36;40m` - normal text with a cyan foreground and black background
77
-
-`$p` - current drive and path. See `prompt /?` output for additional values
78
-
-`$E[1;35;40m` - normal text with a magenta foreground and black background
79
-
-`› ` - unicode chevron and space
80
-
-`$E[1;37;40m` - normal text with a white foreground and black background
58
+
<dl>
59
+
<dt>What's the PowerShell <code>$profile</code> file?</dt>
60
+
<dd>This is a PowerShell file that's run when a PowerShell session is started, similar to a <code>.bashrc</code>. Type <code>$profile</code> in a PowerShell window to see the path. See https://ss64.com/ps/syntax-profile.html for more detail.</dd>
61
+
<dt>After applying the theme, other consoles don't always have the right colors.</dt>
62
+
<dd>There are two possible reasons for this:
63
+
<ol>
64
+
<li>Step 3 from the theme installation was not followed; it's a requirement for the way that the windows console properties save settings.</li>
65
+
<li>The shortcut used to apply the theme was different from shortcut used to open the console.
66
+
<ul>
67
+
<li>The windows console stores its font / color settings in per-shortcut. You can see / delete the special cases in the registry. Go to <code>\HKEY_CURRENT_USER\Console\</code> and delete the subkeys so the default values in the <code>Console</code> key are used.</li>
68
+
</ul>
69
+
</li>
70
+
</ol>
71
+
</dd>
72
+
<dt>What's that crazy cmd.exe prompt string?</dt>
73
+
<dd>The cmd.exe prompt value can be broken down into the following [ANSI escape sequences](http://ascii-table.com/ansi-escape-sequences.php)
74
+
<ul>
75
+
<li><code>E[1;32;40m</code> - normal text with a green foreground and black background</li>
76
+
<li><code>→ </code> - unicode arrow and space</li>
77
+
<li><code>$E[1;36;40m</code> - normal text with a cyan foreground and black background</li>
78
+
<li><code>$p</code> - current drive and path. See <code>prompt /?</code> output for additional values</li>
79
+
<li><code>$E[1;35;40m</code> - normal text with a magenta foreground and black background</li>
80
+
<li><code>› </code> - unicode chevron and space</li>
81
+
<li><code>$E[1;37;40m</code> - normal text with a white foreground and black background</li>
0 commit comments