dotfiles/fedora-install.sh

31 lines
675 B
Bash
Raw Normal View History

2022-01-08 17:44:12 +00:00
#!/bin/sh
if [ "$(lsb_release -si)" != "Fedora" ]; then
2022-01-26 13:42:41 +00:00
echo "This script is only intended to be used for a full setup on Fedora. Quitting..."
2022-01-08 17:44:12 +00:00
exit 1
fi
echo "Configuring directories..."
2022-01-08 17:44:12 +00:00
cd -- "$(dirname -- $0)"
set -- "nvim" "scripts" "zsh"
mkdir -p "$HOME/.config/zsh" # Symlink only the individual files instead of the entire directory
2022-01-08 17:44:12 +00:00
sleep 0.5
2022-01-08 17:44:12 +00:00
echo "Creating the symlinks with stow..."
for pkg in "$@"; do
echo "* Stowing $pkg"
stow -t "$HOME" --ignore="README.md" "$pkg"
sleep 0.1
done
sleep 0.4
echo "Making scripts executable..."
chmod +x scripts/.local/bin/clear-clipboard.sh
chmod +x scripts/.local/bin/update.sh
sleep 0.5
2022-01-08 17:44:12 +00:00
echo "Done!"