From a62a8a9781caaecb21e820edaeb4962b0fb596d5 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 --- 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 ~