-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImage
file. -
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
- Install libfuse2
sudo apt update
sudo apt install libfuse2
- Make it an executable
chmod +x ~/Applications/cursor.AppImage
- Run
~/Applications/cursor.AppImage --no-sandbox
- Add
cursor
shortcut
Add to .bashrc
or .zshrc
alias cursor='~/Applications/your-app.AppImage --no-sandbox'
Just saying.. In my case
--appimage-extract
doesn't accept the parameter for a directory (cursor
in this case). Without cursor extracting works as expected intosquashfs-root
dir. Thanks!Improved script from above snippet (for Linux): https://gitlab.melroy.org/-/snippets/621
That being said, it's still NOT ideal.. since normally the executable (eg. vscode or windsurf) goes to background when executing it. My code snippet fixing this again, by using a custom launcher script just like vscode. Basically doing:
Cursor fix your deb files!
So now the only down-side is that an icon is missingCursor fixed that issue apparently.