Skip to content

Instantly share code, notes, and snippets.

@supersonictw
Last active May 28, 2026 00:29
Show Gist options
  • Select an option

  • Save supersonictw/02c5ca42e56d3002abdc21bbe2a5c781 to your computer and use it in GitHub Desktop.

Select an option

Save supersonictw/02c5ca42e56d3002abdc21bbe2a5c781 to your computer and use it in GitHub Desktop.
[Desktop Entry]
Name=Antigravity IDE
Comment=Google Antigravity IDE
Exec=/opt/antigravity-ide/antigravity-ide %U
Terminal=false
Type=Application
Icon=antigravity
Categories=Development;IDE;
MimeType=x-scheme-handler/antigravity;
[Desktop Entry]
Name=Antigravity
Comment=Google Antigravity Agent Manager
Exec=/opt/antigravity/antigravity %U
Terminal=false
Type=Application
Icon=antigravity
Categories=Development;IDE;
MimeType=x-scheme-handler/antigravity;
#!/bin/sh
# Extract Antigravity icon from app.asar
set -e
SRC_ASAR="/opt/antigravity/resources/app.asar"
EXT_ICON="icon.png"
DST_ICON="$HOME/.local/share/icons/hicolor/512x512/apps/antigravity.png"
npx --yes asar extract-file -- "$SRC_ASAR" "$EXT_ICON"
mv -- "$EXT_ICON" "$DST_ICON"
echo "Done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment