Cursor AppImage Launcher
Cursor.com provides an AppImage for Linux. But it doesn't provide a launcher for it. So you have to manually run the AppImage file to start Cursor.
To create a launcher for Cursor, you can create a .desktop
file.
- Download the AppImage file from Cursor.com.
- Rename it to
cursor.AppImage
. - Place it in a directory, say
~/Applications
. - Make it executable by running
chmod +x ~/Applications/cursor.AppImage
. - Download the Cursor icon from Cursor.com.
- In the website right click and view the Page Source.
- Look for the
<link rel="icon" type="image/png" href="/favicon-48x48.png" sizes="48x48"/>
tag. - Copy the URL of the icon (https://www.cursor.com/favicon-48x48.png)
- Save it as
cursor.png
in the same directory as the AppImage file.
- Create a file named
cursor.desktop
in~/.local/share/applications
directory. Here is an example of a.desktop
file for Cursor:
[Desktop Entry]
Name=Cursor
Exec=~/Applications/cursor.AppImage
Icon=~/Applications/cursor.png
Terminal=false
Type=Application
Categories=Development;