From fb0fbaba4b8382057a00cb412b3ae3ab27617a96 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 8 Mar 2021 08:14:44 +0100 Subject: [PATCH] Copy recursively --- arch-config/scripts/arch-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch-config/scripts/arch-config.sh b/arch-config/scripts/arch-config.sh index 136034c7..7fdd2d8b 100755 --- a/arch-config/scripts/arch-config.sh +++ b/arch-config/scripts/arch-config.sh @@ -142,9 +142,9 @@ cp ~/config/.seltheme ~/ git clone https://gitlab.com/RealStickman-arch/themes.git seltheme="$(cat "$HOME/.seltheme")" if [[ "$seltheme" == "nyarch" ]]; then - cp "./themes/nyarch/"* "$HOME/.config/" + cp -r "./themes/nyarch/"* "$HOME/.config/" elif [[ "$seltheme" == "space-pink" ]]; then - cp "./themes/space-pink"* "$HOME/.config/" + cp -r "./themes/space-pink"* "$HOME/.config/" fi rm -rf ./themes