Last active
May 28, 2026 00:29
-
-
Save supersonictw/02c5ca42e56d3002abdc21bbe2a5c781 to your computer and use it in GitHub Desktop.
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
| [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; |
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
| [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; |
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 | |
| # 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