mirror of
https://github.com/bwya77/vscode-dark-islands.git
synced 2026-05-09 00:09:29 +02:00
[GH-ISSUE #114] feat: Add codium instead of code in the installer #79
Labels
No labels
bug
bug
duplicate
enhancement
enhancement
Missing Info
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vscode-dark-islands#79
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @MaitreGEEK on GitHub (Mar 4, 2026).
Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/114
Yo, I'm using vscodium instead of vscode and the executable for the command is codium instead of code. Could you add a fallback to the installation script for it?
Thanks !
@Detest9067 commented on GitHub (May 5, 2026):
I got it to work by patching install.sh locally before running it so it targets VSCodium instead of VS Code.
I changed:
Command I ran:
tmpdir="$(mktemp -d)" && git clone --quiet --branch main https://github.com/bwya77/vscode-dark-islands.git "$tmpdir" && perl -pi -e 's/\bcode\b/codium/g; s#$HOME/.vscode#$HOME/.vscode-oss#g; s#/Code/User#/VSCodium/User#g' "$tmpdir/install.sh" && bash "$tmpdir/install.sh"
@MaitreGEEK commented on GitHub (May 5, 2026):
Thanks, will try