summaryrefslogtreecommitdiff
path: root/copy-all.sh
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2025-07-13 02:08:07 +0200
committernavewindre <boneyaard@gmail.com>2025-07-13 02:08:07 +0200
commit2eff7106a277f5e3cb3cb826a5f44bb020fc1576 (patch)
treefa05b62efbe8f3d16db94d7fdf71d991e9814cc5 /copy-all.sh
parent3470e35a8216339281f32a39ae6935f12b8c6d28 (diff)
a
Diffstat (limited to 'copy-all.sh')
-rw-r--r--copy-all.sh11
1 files 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