Add theme download to script

This commit is contained in:
RealStickman 2021-03-08 08:12:19 +01:00
parent 67b9a8c12e
commit 2c86bf18b0

View File

@ -134,6 +134,16 @@ sudo cp -r ~/config/usr /
# copy xresources # copy xresources
cp ~/config/.Xresources ~/ cp ~/config/.Xresources ~/
# install theme selected in themes file
git clone https://gitlab.com/RealStickman-arch/themes.git
seltheme="$(cat "$HOME/.seltheme")"
if [[ "$seltheme" == "nyarch" ]]; then
cp "./themes/nyarch/"* "$HOME/.config/"
elif [[ "$seltheme" == "space-pink" ]]; then
cp "./themes/space-pink"* "$HOME/.config/"
fi
rm -rf ./themes
# download cat as cat # download cat as cat
git clone https://github.com/RealStickman/bash-cat-with-cat.git git clone https://github.com/RealStickman/bash-cat-with-cat.git
cp ./bash-cat-with-cat/cat.sh "$HOME/scripts/pieces/cat.sh" cp ./bash-cat-with-cat/cat.sh "$HOME/scripts/pieces/cat.sh"