Last active
March 31, 2025 13:56
-
-
Save tatosjb/0ca8551406499d52d449936964e9c1d6 to your computer and use it in GitHub Desktop.
install-cursor.sh
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
#!/bin/bash | |
# To install on ubuntu | |
# curl -fsSL https://gist.githubusercontent.com/tatosjb/0ca8551406499d52d449936964e9c1d6/raw/6b74dc9fc5afaf36bd3d239583998099ff503344/install-cursor-sh | bash | |
installCursor() { | |
if ! [ -f /opt/cursor.appimage ]; then | |
echo "Installing Cursor AI IDE..." | |
mkdir -p "$HOME/Applications/cursor" | |
# URLs for Cursor AppImage and Icon | |
APPIMAGE_URL="https://downloader.cursor.sh/linux/appImage/x64" | |
ICON_URL="https://global.discourse-cdn.com/flex020/uploads/cursor1/original/2X/f/f7bc157cca4b97c3f0fc83c3c1a7094871a268df.png" | |
# Paths for installation | |
APPDIR="$HOME/Applications/cursor" | |
APPIMAGE_PATH="$APPDIR/cursor.AppImage" | |
TEMP_DOWNLOAD="$APPDIR/cursor.AppImage.tmp" | |
ICON_PATH="$APPDIR/cursor-icon.png" | |
UPDATE_SCRIPT_PATH="$APPDIR/update-cursor.sh" | |
DESKTOP_ENTRY_PATH="/usr/share/applications/cursor.desktop" | |
# Install curl if not installed | |
echo "curl is not installed. Installing..." | |
sudo apt-get update | |
sudo apt-get install -y wget dbus-x11 update-notifier | |
# Download Cursor AppImage | |
echo "Downloading Cursor AppImage..." | |
wget -O $APPIMAGE_PATH "$APPIMAGE_URL" | |
sudo chmod +x $APPIMAGE_PATH | |
echo "" >> $APPDIR | |
bash -c "cat > $APPDIR/cursor-wrapper" <<EOL | |
#!/bin/bash | |
$APPIMAGE_PATH --no-sandbox "\$@" | |
EOL | |
sudo chmod +x $APPIMAGE_PATH | |
bash -c "cat > /usr/local/bin/cursor" <<EOL | |
#!/bin/bash | |
nohup $APPIMAGE_PATH "\$@" >/dev/null 2>&1 < /dev/null & | |
EOL | |
sudo chmod +x /usr/local/bin/cursor | |
# Download Cursor icon | |
echo "Downloading Cursor icon..." | |
wget -O $ICON_PATH "$ICON_URL" | |
# Create a .desktop entry for Cursor | |
echo "Creating .desktop entry for Cursor..." | |
sudo bash -c "cat > $DESKTOP_ENTRY_PATH" <<EOL | |
[Desktop Entry] | |
Name=Cursor | |
Exec=$APPIMAGE_PATH --no-sandbox | |
Icon=$ICON_PATH | |
Type=Application | |
Categories=Utility;Development; | |
EOL | |
chmod +x $UPDATE_SCRIPT_PATH | |
mkdir -p ~/.config/systemd/user | |
bash -c "cat > $HOME/.config/systemd/user/update-cursor.service" << EOL | |
[Unit] | |
Description=Update Cursor | |
[Service] | |
ExecStart=$UPDATE_SCRIPT_PATH | |
Type=oneshot | |
[Install] | |
WantedBy=default.target | |
EOL | |
eval $(dbus-launch --sh-syntax) | |
systemctl --user enable update-cursor.service | |
systemctl --user start update-cursor.service | |
echo "export XDG_RUNTIME_DIR=\"/run/user/\$(id -u)\"" >> $HOME/.zshrc | |
echo "export DBUS_SESSION_BUS_ADDRESS=\"unix:path=\${XDG_RUNTIME_DIR}/bus\"" >> $HOME/.zshrc | |
echo " | |
Cursor AI IDE installation complete. You can find it in your application menu. | |
PLEASE REBOOT YOUR SYSTEM TO MAKE SURE THAT EVERYTHING WAS SET UP PROPERLY | |
" | |
else | |
echo "Cursor AI IDE is already installed." | |
fi | |
} | |
installCursor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment