This file contains hidden or 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/zsh | |
# | |
# Cursor AI IDE Installer/Updater | |
# This script installs or updates Cursor AI IDE on Linux systems | |
# | |
# ----------------------------------------------------------------------------- | |
# Configuration | |
# ----------------------------------------------------------------------------- | |
APPIMAGE_PATH="/opt/cursor/cursor.AppImage" |
This file contains hidden or 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/sh | |
# Update the system | |
sudo apt update && sudo apt full-upgrade | |
# Basic packages | |
sudo apt install -y p7zip-full unrar gparted wget build-essential curl git | |
# Java | |
sudo apt install -y default-jre |
OlderNewer