diff --git a/README.md b/README.md index 24545d5..948afd8 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ WinApps works by: - The GNU/Linux `/home` directory is accessible within Windows via the `\\tsclient\home` mount. - Integration with `Nautilus`, allowing you to right-click files to open them with specific Windows applications based on the file MIME type. - The [official taskbar widget](https://github.com/winapps-org/WinApps-Launcher) enables seamless administration of the Windows subsystem and offers an easy way to launch Windows applications. +- Microsoft Office links (e.g. ms-word://) from the host system are automatically opened in the Windows subsystem. (Note: You may need to use a [User-Agent-switcher] (https://github.com/ray-lothian/UserAgent-Switcher/) and set the User-Agent to Windows, as Office's web interface typically hides the "Open in Desktop App" option for Linux users.) ## Supported Applications **WinApps supports *ALL* Windows applications.** diff --git a/setup.sh b/setup.sh index 46cf023..5c6ec1e 100755 --- a/setup.sh +++ b/setup.sh @@ -156,7 +156,7 @@ function waGetSourceCode() { fi if [[ ! -d "$SOURCE_PATH" ]]; then - $SUDO git clone --recurse-submodules --remote-submodules https://github.com/fluffy-git/winapps.git "$SOURCE_PATH" + $SUDO git clone --recurse-submodules --remote-submodules https://github.com/winapps-org/winapps.git "$SOURCE_PATH" else echo -e "${INFO_TEXT}WinApps installation already present at ${CLEAR_TEXT}${COMMAND_TEXT}${SOURCE_PATH}${CLEAR_TEXT}${INFO_TEXT}. Updating...${CLEAR_TEXT}" $SUDO git -C "$SOURCE_PATH" pull --no-rebase @@ -196,7 +196,7 @@ function waGetInquirer() { INQUIRER="/tmp/waInquirer.sh" rm -f "$INQUIRER" - curl -o "$INQUIRER" "https://raw.githubusercontent.com/fluffy-git/winapps/main/install/inquirer.sh" + curl -o "$INQUIRER" "https://raw.githubusercontent.com/winapps-org/winapps/main/install/inquirer.sh" fi # shellcheck source=/dev/null # Exclude this file from being checked by ShellCheck.