25 lines
582 B
Text
25 lines
582 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Copy configs and make a backup if it already exists
|
||
|
echo -e "\nInstalling Configs..."
|
||
|
for file in configs/*
|
||
|
do
|
||
|
echo -e "\n$file..."
|
||
|
cp -rbv $file $HOME/.config/
|
||
|
done
|
||
|
|
||
|
# Copy scripts and make a backup if it already exists
|
||
|
echo -e "\nInstalling Scripts..."
|
||
|
|
||
|
if [ ! -d "$HOME/.local/bin" ]; then
|
||
|
mkdir "$HOME/.local/bin"
|
||
|
fi
|
||
|
|
||
|
cp -rbv bin $HOME/.local
|
||
|
|
||
|
# Link shell files and make a backup if it already exists
|
||
|
echo -e "\nLinking shell..."
|
||
|
cp -sbv $HOME/.config/shell/profile ~/.zprofile
|
||
|
cp -sbv $HOME/.config/x11/xinitrc ~/.xinitrc
|
||
|
|