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
added better handling for azure cloud shell profiles
woof.monster
1 month ago
0f4c1afd
81058d5a
+7
-2
1 changed file
expand all
collapse all
unified
split
src
open-profile.tsx
+7
-2
src/open-profile.tsx
reviewed
···
187
187
props.profiles.filter((profile) => profile.guid === item.profile)[0].source ===
188
188
"Microsoft.WSL"
189
189
? Icon.HardDrive
190
190
-
: Icon.Terminal
190
190
+
: props.profiles.filter((profile) => profile.guid === item.profile)[0].guid ===
191
191
+
"{b453ae62-4e3d-5e58-b989-0a998ec441b8}" ||
192
192
+
props.profiles.filter((profile) => profile.guid === item.profile)[0].source ===
193
193
+
"Windows.Terminal.Azure"
194
194
+
? Icon.Cloud
195
195
+
: Icon.Terminal
191
196
}
192
197
keywords={
193
198
props.profiles.filter((profile) => profile.guid === item.profile)[0].guid ===
···
345
350
<List.Item
346
351
key={item.guid}
347
352
icon={
348
348
-
item.guid === "{b453ae62-4e3d-5e58-b989-0a998ec441b8}" // Azure Cloud Shell
353
353
+
item.guid === "{b453ae62-4e3d-5e58-b989-0a998ec441b8}" || item.source === "Windows.Terminal.Azure" // Azure Cloud Shell
349
354
? Icon.Cloud
350
355
: Icon.Terminal
351
356
}