Last active
September 12, 2024 06:02
-
-
Save ddwang/0046da801bcb29d241869d37ad719394 to your computer and use it in GitHub Desktop.
Replace `/mnt/c/Users/<USER_NAME>/AppData/Local/Programs/cursor/resources/app/bin/cursor`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# | |
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# Licensed under the MIT License. See License.txt in the project root for license information. | |
if [ "$VSCODE_WSL_DEBUG_INFO" = true ]; then | |
set -x | |
fi | |
COMMIT="abd2f3db4bdb28f9e95536dfa84d8479f1eb312d" | |
APP_NAME="code" | |
QUALITY="stable" | |
NAME="Cursor" | |
SERVERDATAFOLDER=".cursor-server" | |
VSCODE_PATH="$(dirname "$(dirname "$(realpath "$0")")")/../.." | |
ELECTRON="$VSCODE_PATH/$NAME.exe" | |
IN_WSL=false | |
if [ -n "$WSL_DISTRO_NAME" ]; then | |
# $WSL_DISTRO_NAME is available since WSL builds 18362, also for WSL2 | |
IN_WSL=true | |
else | |
WSL_BUILD=$(uname -r | sed -E 's/^[0-9.]+-([0-9]+)-Microsoft.*|.*/\1/') | |
if [ -n "$WSL_BUILD" ]; then | |
if [ "$WSL_BUILD" -ge 17063 ]; then | |
# WSLPATH is available since WSL build 17046 | |
# WSLENV is available since WSL build 17063 | |
IN_WSL=true | |
else | |
# If running under older WSL, don't pass cli.js to Electron as | |
# environment vars cannot be transferred from WSL to Windows | |
# See: https://github.com/microsoft/BashOnWindows/issues/1363 | |
# https://github.com/microsoft/BashOnWindows/issues/1494 | |
"$ELECTRON" "$@" | |
exit $? | |
fi | |
fi | |
fi | |
if [ $IN_WSL = true ]; then | |
export WSLENV="ELECTRON_RUN_AS_NODE/w:$WSLENV" | |
CLI=$(wslpath -m "$VSCODE_PATH/resources/app/out/cli.js") | |
# use the Remote WSL extension if installed | |
WSL_EXT_ID="ms-vscode-remote.remote-wsl" | |
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" --ms-enable-electron-run-as-node --locate-extension $WSL_EXT_ID >/tmp/remote-wsl-loc.txt 2>/dev/null </dev/null | |
WSL_EXT_WLOC=$(tail -n 1 /tmp/remote-wsl-loc.txt) | |
WSL_CODE=$(wslpath -u "${WSL_EXT_WLOC%%[[:cntrl:]]}")/scripts/wslCode.sh | |
if [ -n "$WSL_EXT_WLOC" ]; then | |
# replace \r\n with \n in WSL_EXT_WLOC | |
WSL_CODE=$(wslpath -u "${WSL_EXT_WLOC%%[[:cntrl:]]}")/scripts/wslCode.sh | |
"$WSL_CODE" "$COMMIT" "$QUALITY" "$ELECTRON" "$APP_NAME" "$SERVERDATAFOLDER" "$@" | |
exit $? | |
fi | |
elif [ -x "$(command -v cygpath)" ]; then | |
CLI=$(cygpath -m "$VSCODE_PATH/resources/app/out/cli.js") | |
else | |
CLI="$VSCODE_PATH/resources/app/out/cli.js" | |
fi | |
ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" --ms-enable-electron-run-as-node "$@" | |
exit $? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I forked this, and made a couple improvements: https://gist.github.com/swayducky/8ba8f2db156c7f445d562cdc12c0ddb4