From 2eff7106a277f5e3cb3cb826a5f44bb020fc1576 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sun, 13 Jul 2025 02:08:07 +0200 Subject: a --- copy-all.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/copy-all.sh b/copy-all.sh index 2c6eaab..489e6ec 100644 --- a/copy-all.sh +++ b/copy-all.sh @@ -7,12 +7,15 @@ if [ "$answer" != "y" ]; then exit 1 fi -cp -rf ./config/* ~/.config/ -cp -rf ./icons/* ~/.icons/ -cp -rf ./themes/* ~/.themes/ +mkdir -p ~/.config +mkdir -p ~/.icons +mkdir -p ~/.themes +cp -rf ./config/ ~/.config/ +cp -rf ./icons/ ~/.icons/ +cp -rf ./themes/ ~/.themes/ mkdir -p ~/.local/bin/ cp -rf ./bin ~/.local/bin/ -cp -rf ./home/* ~/ +cp -rf ./home/ ~/ cp ./vimrc ~/.vimrc cp ./nvimrc ~/.nvimrc cp ./zshrc ~/.zshrc -- cgit v1.2.3