tangled
alpha
login
or
join now
woof.monster
/
windows-terminal-raycast
0
fork
atom
launch and manage windows terminal instances with raycast
raycast
raycast-extension
0
fork
atom
overview
issues
pulls
pipelines
resolve merge conflicts
woof.monster
1 month ago
93052577
c867ca0e
+13
1 changed file
expand all
collapse all
unified
split
src
open-profile.tsx
+13
src/open-profile.tsx
reviewed
···
189
189
? Icon.HardDrive
190
190
: Icon.Terminal
191
191
}
192
192
+
keywords={
193
193
+
props.profiles.filter((profile) => profile.guid === item.profile)[0].guid ===
194
194
+
"{61c54bbd-c2c6-5271-96e7-009a87ff44bf}" || // Windows PowerShell 1.0 (comes with Windows)
195
195
+
props.profiles.filter((profile) => profile.guid === item.profile)[0].guid ===
196
196
+
"{574e775e-4f2a-5b96-ac1e-a2962a402336}" || // Windows PowerShell 7.0+
197
197
+
props.profiles.filter((profile) => profile.guid === item.profile)[0].source ===
198
198
+
"Windows.Terminal.PowershellCore" // Windows Powershell 7.0+ (source for better handling)
199
199
+
? ["pwsh", "ps", "posh"]
200
200
+
: props.profiles.filter((profile) => profile.guid === item.profile)[0].guid ===
201
201
+
"{0caa0dad-35be-5f56-a8ff-afceeeaa6101}"
202
202
+
? ["cmd"]
203
203
+
: []
204
204
+
}
192
205
/>
193
206
);
194
207
case "folder":