diff --git a/setup-desktop.sh b/setup-desktop.sh index 15e0b2a..edf3128 100755 --- a/setup-desktop.sh +++ b/setup-desktop.sh @@ -138,14 +138,6 @@ if [[ -f "$DOTFILES_DIR/zsh/install-zsh-dotfiles.sh" ]]; then ok "Dot-Files: .zshrc" fi -# ~/.secrets fuer API-Keys (source in .zshrc eintragen) -if ! grep -q 'source ~/.secrets' ~/.zshrc 2>/dev/null; then - echo '' >> ~/.zshrc - echo '# API-Keys (nicht ins Repo!)' >> ~/.zshrc - echo '[[ -f ~/.secrets ]] && source ~/.secrets' >> ~/.zshrc - ok "source ~/.secrets in .zshrc eingetragen" -fi - # .p10k.zsh (vom Mac kopieren, falls im Repo vorhanden, sonst Wizard beim ersten Start) if [[ -f "$DOTFILES_DIR/.p10k.zsh" ]]; then cp "$DOTFILES_DIR/.p10k.zsh" ~/.p10k.zsh @@ -213,5 +205,3 @@ echo " 1. Synology Drive Client installieren (.deb von synology.com)" echo " 2. Thunderbird starten → Profil aus Synology Drive einbinden" echo " 3. Brave starten → Synchronisation einrichten" echo " 4. Falls p10k-Icons fehlen: Terminal-Schriftart auf 'MesloLGS NF' setzen" -echo " 5. API-Key aus Bitwarden in ~/.secrets eintragen:" -echo " echo 'export ANTHROPIC_API_KEY=\"sk-ant-...\"' > ~/.secrets && chmod 600 ~/.secrets"