launch and manage windows terminal instances with raycast
raycast raycast-extension

resolve merge conflicts

+13
+13
src/open-profile.tsx
··· 189 189 ? Icon.HardDrive 190 190 : Icon.Terminal 191 191 } 192 + keywords={ 193 + props.profiles.filter((profile) => profile.guid === item.profile)[0].guid === 194 + "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}" || // Windows PowerShell 1.0 (comes with Windows) 195 + props.profiles.filter((profile) => profile.guid === item.profile)[0].guid === 196 + "{574e775e-4f2a-5b96-ac1e-a2962a402336}" || // Windows PowerShell 7.0+ 197 + props.profiles.filter((profile) => profile.guid === item.profile)[0].source === 198 + "Windows.Terminal.PowershellCore" // Windows Powershell 7.0+ (source for better handling) 199 + ? ["pwsh", "ps", "posh"] 200 + : props.profiles.filter((profile) => profile.guid === item.profile)[0].guid === 201 + "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}" 202 + ? ["cmd"] 203 + : [] 204 + } 192 205 /> 193 206 ); 194 207 case "folder":