From cc6637fef150ec50b1523b6419bcc5bceb5aefb1 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Tue, 9 Mar 2021 17:32:32 +0100 Subject: [PATCH] Append color information --- arch-config/scripts/arch-config.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch-config/scripts/arch-config.sh b/arch-config/scripts/arch-config.sh index e38ff9ff..708ad8fb 100755 --- a/arch-config/scripts/arch-config.sh +++ b/arch-config/scripts/arch-config.sh @@ -219,12 +219,14 @@ rm -rf ./themes git clone https://gitlab.com/RealStickman-arch/themes.git seltheme="$(cat "$HOME/.seltheme")" if [[ "$seltheme" == "nyarch" ]]; then - cp -r "./themes/nyarch/i3" "$HOME/.config/" + #cp -r "./themes/nyarch/i3" "$HOME/.config/" + cat "./themes/nyarch/i3/color" >> "$HOME/.config/i3/config" cp -r "./themes/nyarch/polybar" "$HOME/.config/" cp -r "./themes/nyarch/neofetch/lowpoly_flamegirl_blue.txt" "$HOME/.config/neofetch/lowpoly_flamegirl.txt" cp "./themes/.fehbg-nyarch" "$HOME/.fehbg" elif [[ "$seltheme" == "space-pink" ]]; then - cp -r "./themes/space-pink/i3" "$HOME/.config/" + #cp -r "./themes/space-pink/i3" "$HOME/.config/" + cat "./themes/space-pink/i3/color" >> "$HOME/.config/i3/config" cp -r "./themes/space-pink/polybar" "$HOME/.config/" cp -r "./themes/space-pink/neofetch/lowpoly_flamegirl_orange.txt" "$HOME/.config/neofetch/lowpoly_flamegirl.txt" cp "./themes/.fehbg-space-pink" "$HOME/.fehbg"