Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Install Google Antigravity IDE on an Arch Linux machine. Use when the user wants Antigravity installed on Arch or an Arch-based distro, either system-wide throu
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: install-antigravity-arch-linux3description: Install Google Antigravity IDE on an Arch Linux machine. Use when the user wants Antigravity installed on Arch or an Arch-based distro, either system-wide through yay or paru, or as a user-local install without sudo.4compatibility: Runtimes: codex, openclaw · OS: linux · Requires bash, curl, tar, makepkg; yay or paru optional for system installs.5allowed-tools: Bash Read6---78# Install Antigravity On Arch Linux910Use this skill only for Arch Linux and Arch-based distros. Do not use it for Debian, Ubuntu, Fedora, macOS, or Windows.1112## Choose the install mode1314- Use `--system` when the user wants a normal package-manager install and sudo is available.15- Use `--local` when the user does not want to enter a sudo password or only needs Antigravity for the current user.1617## Commands1819System-wide install:2021```bash22bash scripts/install_antigravity_arch.sh --system23```2425User-local install without sudo:2627```bash28bash scripts/install_antigravity_arch.sh --local29```3031## What the script does3233For `--system`:3435- requires `yay` or `paru`36- installs the `antigravity` AUR package37- leaves updates to the package manager3839For `--local`:4041- downloads the current AUR snapshot for `antigravity`42- builds the package as the current user with `makepkg`43- extracts the built package into `~/.local/opt/Antigravity-<version>`44- creates `~/.local/bin/antigravity`45- creates user-local desktop entries and icon files46- refreshes desktop and MIME caches when the tools are available4748## Validate the install4950Run:5152```bash53which antigravity54antigravity --version55```5657If it is a local install, `which antigravity` should point to `~/.local/bin/antigravity`.5859## GNOME Wayland note6061If Antigravity opens with a custom title bar that is hard to move on GNOME Wayland, create or update `~/.config/Antigravity/User/settings.json` with:6263```json64{65"window.titleBarStyle": "native",66"window.customTitleBarVisibility": "never"67}68```6970Then restart Antigravity.7172## Boundaries7374- Do not claim non-Arch instructions are covered by this skill.75- Do not embed passwords or secrets into the flow.76- Do not use destructive package-manager cleanup commands unless the user explicitly asks.77