From bc1fcb296c8c6827b6c7825a7951d7d8d889a5ac Mon Sep 17 00:00:00 2001 From: rene Date: Sat, 7 Mar 2026 16:50:26 +0100 Subject: [PATCH] Fix Dotfiles Stow-Pakete: an dotfiles-rene Struktur anpassen nvim, oh-my-zsh, micro, bin, heic-scripts statt zsh, nvim, git, ssh Co-Authored-By: Claude Opus 4.6 --- setup-desktop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-desktop.sh b/setup-desktop.sh index c05bbcd..4cc323b 100644 --- a/setup-desktop.sh +++ b/setup-desktop.sh @@ -63,7 +63,7 @@ if [[ ! -d ~/dotfiles ]]; then git clone "$DOTFILES_REPO" ~/dotfiles fi cd ~/dotfiles -for pkg in zsh nvim git ssh; do +for pkg in nvim oh-my-zsh micro bin heic-scripts; do [[ -d "$pkg" ]] && stow "$pkg" && ok "Dot-Files: $pkg" done cd ~