From 819183e3c471b2325a924081dbe10fd6c73ec2a7 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sun, 3 Nov 2024 06:35:44 +0100 Subject: update cfg script --- copy-all.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 copy-all.sh diff --git a/copy-all.sh b/copy-all.sh new file mode 100644 index 0000000..82199c3 --- /dev/null +++ b/copy-all.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +echo "WARNING: this will overwrite the config" +read -p "are you sure? (y/n): " answer +if [ "$answer" != "y" ]; then + echo "Aborting." + exit 1 +fi + +cp -r ./config/* ~/.config/ +cp -r ./icons/* ~/.icons/ +cp -r ./themes/* ~/.themes/ +cp ./vimrc ~/.vimrc +cp ./zshrc ~/.zshrc -- cgit v1.2.3