Conversation
| @@ -0,0 +1,3 @@ | |||
| <svg width="25.6" height="25.6" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> | |||
| FULL_NAME="The new Windows Terminal" | ||
|
|
||
| # The executable inside windows | ||
| WIN_EXECUTABLE="explorer.exe" |
There was a problem hiding this comment.
Windows Terminal is located at %LocalAppData%\Microsoft\WindowsApps\wt.exe.
There was a problem hiding this comment.
Ah, this PR is very old, but it's trying to launch the UWP using the package family name
UWP_CMD="shell:appsFolder\\${PACKAGE_FAMILY_NAME}!${APP_ID}"
APP_ARGS="${UWP_CMD} \"${FILE}\""xfreerdp ${RDP_FLAGS} /d:"${RDP_DOMAIN}" /u:"${RDP_USER}" /p:"${RDP_PASS}" /v:${RDP_IP} +auto-reconnect +clipboard +home-drive -wallpaper /scale:${RDP_SCALE} /dynamic-resolution /${MULTI_FLAG} /wm-class:"${FULL_NAME}" /app:"${WIN_EXECUTABLE}" /app-icon:"${ICON}" /app-cmd:"${APP_ARGS}"
I think there's a way to list all installed UWP apps and grab their PFN and was hoping avoid having to deal with exes.
|
@scaryrawr I know this PR is very old but if you're still willing to get this merged you can PR over at https://github.com/winapps-org/winapps where we organized an updated fork since Fmstrat abandoned the project. |
|
I have added UWP application support as per winapps-org/winapps#186. |

Attempt at adding UWP support #119