Created
February 7, 2026 16:20
-
-
Save isDipesh/4aa14b719e7d3c4d1a915f8e8ce287ac to your computer and use it in GitHub Desktop.
Cursor IDE Installation on Arch Linux
This file contains hidden or 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
| # Install Cursor AI IDE | |
| mkdir -p ~/apps | |
| curl -L https://api2.cursor.sh/updates/download/golden/linux-x64/cursor/2.4 -o ~/apps/cursor.AppImage | |
| chmod +x ~/apps/cursor.AppImage | |
| curl -L https://mintlify.s3.us-west-1.amazonaws.com/cursor/images/logo/app-logo.svg -o ~/apps/cursor.svg | |
| mkdir -p ~/.local/share/applications | |
| cat > ~/.local/share/applications/cursor.desktop <<EOL | |
| [Desktop Entry] | |
| Name=Cursor IDE | |
| Exec=$HOME/apps/cursor.AppImage | |
| Icon=$HOME/apps/cursor.svg | |
| Type=Application | |
| Categories=Development;IDE; | |
| Terminal=false | |
| EOL | |
| update-desktop-database ~/.local/share/applications | |
| cat > ~/.local/bin/cursor <<'EOL' | |
| #!/bin/bash | |
| "$HOME/apps/cursor.AppImage" "$@" | |
| EOL | |
| chmod +x ~/.local/bin/cursor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment