37 lines
765 B
Bash
Executable file
37 lines
765 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
cat << EOF | lolcat
|
|
_________ __ ____ ___
|
|
/ _____/ _____/ |_| | \______
|
|
\_____ \_/ __ \ __\ | /\____ \
|
|
/ \ ___/| | | | / | |_> >
|
|
/_______ /\___ >__| |______/ | __/
|
|
\/ \/ |__|
|
|
|
|
EOF
|
|
|
|
echo "Copying config files..."
|
|
cp -r cava kitty dunst fastfetch gtk-3.0 gtk-4.0 hypr hypridle rofi starship tmux waybar yazi ~/.config/
|
|
|
|
cp -r bin ~/.local/bin/
|
|
|
|
cd ~/.local/bin/
|
|
chmod +x *
|
|
|
|
|
|
cd ~/hyprdots/
|
|
|
|
echo "Copying .zshrc..."
|
|
cp zsh/.zshrc ~/.zshrc
|
|
|
|
echo "Cloning dotsh repo..."
|
|
mkdir -p ~/SideProjects/
|
|
git clone https://github.com/ad1822/dotsh ~/SideProjects/dotsh
|
|
|
|
cd ~/SideProjects/dotsh || exit
|
|
|
|
echo "Making scripts executable..."
|
|
chmod +x *
|
|
|
|
echo "Setup complete!"
|