Revert "Cursor AI Editor"

This commit is contained in:
David Heinemeier Hansson
2024-11-08 16:42:07 -08:00
committed by GitHub
parent f8c1402d84
commit aba16441d5
3 changed files with 0 additions and 26 deletions

View File

@@ -4,7 +4,6 @@ CHOICES=(
"1password Manage your passwords securely across devices"
"Audacity Record and edit audio"
"Brave Chrome-based browser with built-in ad blocking"
"Cursor The AI Code Editor"
"Doom Emacs Emacs framework with curated list of packages"
"Dropbox Sync files across computers with ease"
"OBS Studio Record screencasts with inputs from both display + webcam"

View File

@@ -1,22 +0,0 @@
cd /tmp
curl -L o cursor.appimage https://downloader.cursor.sh/linux/appImage/x64
sudo mv cursor.appimage /opt/cursor.appimage
sudo chmod +x /opt/cursor.appimage
sudo apt install -y fuse
DESKTOP_FILE="/usr/share/applications/cursor.desktop"
sudo bash -c "cat > $DESKTOP_FILE" <<EOL
[Desktop Entry]
Name=Cursor
Exec=/opt/cursor.appimage --no-sandbox
Icon=/opt/cursor.png
Type=Application
Categories=Development;
EOL
if [ -f "$DESKTOP_FILE" ]; then
echo "cursor.desktop created successfully"
else
echo "Failed to create cursor.desktop"
fi

View File

@@ -1,3 +0,0 @@
sudo apt remove -y fuse
sudo rm /opt/cursor.appimage
sudo rm /usr/share/applications/cursor.desktop