From 327663dbed9f615913894768c3801076bd1b9dbe Mon Sep 17 00:00:00 2001 From: "[yuri]" <[yuri.kuit@gmail.com]> Date: Thu, 11 Dec 2025 17:52:16 +0100 Subject: [PATCH] added skel command --- install_dotfiles.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/install_dotfiles.sh b/install_dotfiles.sh index 62a755d..7bfc087 100755 --- a/install_dotfiles.sh +++ b/install_dotfiles.sh @@ -121,4 +121,18 @@ fi say_green "Dotfiles for $OS copied to $TARGET_DIR." -say_yellow "End Copy Dotfiles" \ No newline at end of file +say_yellow "End Copy Dotfiles" + +say_yellow "########################################################################" +say_yellow "FINAL SKEL" +say_yellow "Copying all files and folders from /etc/skel to ~" +say_yellow "First we make a backup of .config" +say_yellow "Wait for it ...." +say_yellow "########################################################################" + +cp -Rf ~/.config ~/.config-backup-$(date +%Y.%m.%d-%H.%M.%S) +cp -arf /etc/skel/. ~ + +say_yellow "##############################################################" +say_yellow "################### $(basename $0) done" +say_yellow "##############################################################"