Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coder/cursor-arm
Cursor built for ARM Linux and Windows
https://github.com/coder/cursor-arm
arm cursor ide
Last synced: 7 days ago
JSON representation
Cursor built for ARM Linux and Windows
- Host: GitHub
- URL: https://github.com/coder/cursor-arm
- Owner: coder
- License: mit
- Created: 2024-09-12T03:57:20.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-25T00:21:31.000Z (about 1 month ago)
- Last Synced: 2024-12-24T00:44:15.785Z (10 days ago)
- Topics: arm, cursor, ide
- Language: Nix
- Homepage: https://cursor.com
- Size: 61.5 KB
- Stars: 60
- Watchers: 1
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Cursor for ARM[Cursor](https://cursor.com) built for Linux and Windows ARM.
The official issue tracker has numerous issues ([#1532](https://github.com/getcursor/cursor/issues/1532) and [#1410](https://github.com/getcursor/cursor/issues/1410)) for official ARM support. Read the [FAQ](#faq) to learn how this works.
> [!NOTE]
> These are unofficial builds.## Install
Download the [latest release](https://github.com/coder/cursor-arm/releases/latest) and execute it.
For Nix users: `nix run github:coder/cursor-arm` (this should work for all architectures, not just arm).
## FAQ
### How is this possible?
Cursor is a closed-source fork of VS Code based on Electron that distributes using `AppImage`.
An `AppImage` is an executable archive that can be extracted with `7z`. The contents are virtually the same as the built and distributed archives of VS Code.
Overwriting the JavaScript for VS Code with Cursor's archive creates a Cursor build.
```bash
cp -R $cursorSrc/resources/app/out $vscodeSrc/resources/app/
```See the [build process](./flake.nix#L48) to see exactly how this works.
### Shouldn't Cursor do this?
Yes. Hopefully they will!
### Is this stable?
Seemingly. The [build process](./flake.nix#L48) is quite simple. Try it for yourself!
### How do updates work?
The Nix flake will be updated as Cursor updates and a new GitHub release will be published.
Automatic updates do not work.