Skip to content

Commit 0872630

Browse files
committed
Removed other mentions of Windows Terminal from source code and documentation
1 parent 9b9862c commit 0872630

File tree

3 files changed

+0
-76
lines changed

3 files changed

+0
-76
lines changed

src/murfey/server/api/bootstrap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
bootstrap = APIRouter(prefix="/bootstrap", tags=["bootstrap"])
4444
cygwin = APIRouter(prefix="/cygwin", tags=["bootstrap"])
4545
msys2 = APIRouter(prefix="/msys2", tags=["bootstrap"])
46-
windows_terminal = APIRouter(prefix="/microsoft/terminal", tags=["bootstrap"])
4746
pypi = APIRouter(prefix="/pypi", tags=["bootstrap"])
4847
plugins = APIRouter(prefix="/plugins", tags=["bootstrap"])
4948

src/murfey/server/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ class Settings(BaseSettings):
6565
app.include_router(murfey.server.api.bootstrap.bootstrap)
6666
app.include_router(murfey.server.api.bootstrap.cygwin)
6767
app.include_router(murfey.server.api.bootstrap.msys2)
68-
app.include_router(murfey.server.api.bootstrap.windows_terminal)
6968
app.include_router(murfey.server.api.bootstrap.pypi)
7069
app.include_router(murfey.server.api.bootstrap.plugins)
7170
app.include_router(murfey.server.api.clem.router)

src/murfey/templates/bootstrap.html

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -63,80 +63,6 @@ <h3>Installing MSYS2</h3>
6363
$ pacman -S mingw-w64-x86_64-rust --disable-download-timeout
6464
</pre>
6565

66-
<h3>Installing Windows Terminal</h3>
67-
<p>
68-
There is currently a bug with MSYS2 terminals on Windows 10 that prevents its
69-
user interface from working properly. Our current solution is to use
70-
Microsoft's
71-
<a href="https://github.com/microsoft/terminal">Windows Terminal</a> as a
72-
wrapper for MSYS2.
73-
</p>
74-
<p>
75-
The latest release of Windows Terminal can be downloaded directly from
76-
<a href="https://github.com/microsoft/terminal/releases">GitHub</a>, or
77-
through this <a href="/microsoft/terminal/releases">mirror</a>. This will
78-
download a ZIP file, which can be extracted to a directory of your choosing
79-
and used out of the box.
80-
</p>
81-
<p>
82-
In order to run the UCRT64 environment in Windows Terminal, Windows Terminal
83-
will need to be directed to it by adding a dictionary entry in its settings
84-
JSON file. To do so:
85-
</p>
86-
<ol start="1">
87-
<li>Open Windows Terminal.</li>
88-
<li>
89-
Click on the dropdown arrow to the right of the "new tab" button on the
90-
title bar.
91-
</li>
92-
<li>
93-
Click "Settings" (alternatively, use the "Ctrl + ," keyboard shortcut).
94-
</li>
95-
<li>
96-
On the bottom left corner of the window, click on the "Open JSON file"
97-
option. This will bring up the JSON file managing Windows Terminal's
98-
settings in your default code editor.
99-
</li>
100-
<li>Under "profiles" > "list", Add this dictionary entry for UCRT64:</li>
101-
</ol>
102-
<pre style="font-family: monospace">
103-
"profiles":
104-
{
105-
"defaults": {},
106-
"list":
107-
[
108-
{
109-
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
110-
"hidden": false,
111-
"name": "Windows PowerShell"
112-
},
113-
{
114-
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
115-
"hidden": false,
116-
"name": "Command Prompt"
117-
},
118-
<span style="color: red; font-family: monospace">{
119-
"guid": "{17da3cac-b318-431e-8a3e-7fcdefe6d114}",
120-
"name": "UCRT64 / MSYS2",
121-
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -ucrt64",
122-
"startingDirectory": "C:/msys64/home/%USERNAME%",
123-
"icon": "C:/msys64/ucrt64.ico"
124-
}</span>
125-
]
126-
},
127-
</pre>
128-
<ol start="6">
129-
<li>
130-
Additionally, if you want Windows Terminal to always start using UCRT64, you
131-
can replace the "defaultProfile" key with the "guid" value of UCRT64.
132-
</li>
133-
<li>Save your changes and close.</li>
134-
</ol>
135-
<p>
136-
With these changes, you should now be able to run UCRT64 in the Windows
137-
Terminal.
138-
</p>
139-
14066
<h2>Setting Up Python</h2>
14167
<p>
14268
Once Python and pip are installed in the terminal, you have the option to

0 commit comments

Comments
 (0)