feat: tekki_arch VSCodium-Theme ins Profil aufgenommen

This commit is contained in:
2026-04-27 09:45:22 +02:00
parent 7d4d8901a4
commit 687993d43b
3 changed files with 308 additions and 0 deletions
+12
View File
@@ -42,6 +42,18 @@ for entry in "${CONFIG_FILES[@]}"; do
echo " linked ~/$dst"
done
# Install bundled VSCodium extensions
EXTENSIONS_DIR="$PROFILE_DIR/vscode-extensions"
if [[ -d "$EXTENSIONS_DIR" ]]; then
for ext in "$EXTENSIONS_DIR"/*/; do
name=$(basename "$ext")
target="$HOME/.vscode-oss/extensions/$name"
mkdir -p "$target"
cp -r "$ext"* "$target/"
echo " installed vscode extension: $name"
done
fi
# Set active profile
ln -sfn "$PROFILE_DIR" "$HOME/.active_profile"
echo " active profile -> $PROFILE_NAME"