feat: rebrand VSCodium with OCCode icon on all platforms#9
Merged
damoahdominic merged 2 commits intodamoahdominic:mainfrom Feb 17, 2026
Merged
feat: rebrand VSCodium with OCCode icon on all platforms#9damoahdominic merged 2 commits intodamoahdominic:mainfrom
damoahdominic merged 2 commits intodamoahdominic:mainfrom
Conversation
added 2 commits
February 17, 2026 21:51
- Add apps/wrapper/src/rebrand.js: replaces VSCodium icons with OCcode lobster claw icon on Windows, macOS, and Linux - Patch product.json nameShort/nameLong/applicationName to 'OCcode' - Windows: use @electron/rcedit to patch codium.exe icon + replace code.ico - macOS: replace VSCodium.icns (pre-built .icns included), update Info.plist - Linux: replace pixmaps/vscodium.png and resources linux PNGs - Add pre-generated icon.icns for macOS (from png2icns) - Add @electron/rcedit as optionalDependency (Windows only) - All icon patching is non-fatal (try/catch with warnings)
VSCodium files may be directly in vscodeDir rather than a subdirectory. Fall back to vscodeDir when resources/app exists (flat extraction).
Author
Linux Smoke Test Results ✅Rebrand log (confirms icon replacement + product.json patching): Fix applied: The original code looked for Screenshot: OCCode launches with the lobster claw icon in the title bar, title shows "OCcode" instead of "VSCodium", and the OpenClaw Home page loads correctly.
|
damoahdominic
added a commit
that referenced
this pull request
Mar 16, 2026
feat: rebrand VSCodium with OCCode icon on all platforms
damoahdominic
added a commit
that referenced
this pull request
Mar 16, 2026
feat: rebrand VSCodium with OCCode icon on all platforms
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces VSCodium's default icons and product names with OCcode branding (lobster claw icon) on all platforms after download/extraction.
Changes
apps/wrapper/src/rebrand.js— New module that detects platform and replaces VSCodium icons:codium.exevia@electron/rcedit+ replacescode.icoVSCodium.icnswith pre-built.icns, updatesInfo.plistdisplay namepixmaps/vscodium.pngandresources/linux/*.pngproduct.json(nameShort,nameLong,applicationName→ "OCcode")apps/wrapper/src/main.js— CallsrebrandVSCodium()after download, before extension installapps/wrapper/assets/icon.icns— Pre-generated macOS icon fromicon.pngapps/wrapper/package.json— Adds@electron/rceditas optional dependency (Windows only)Design decisions
rceditis conditionally required — skipped gracefully if unavailable.icnsis pre-built; falls back to runtimesipsgeneration if missing