23 lines
641 B
Bash
Executable File
23 lines
641 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install dotfiles for Arch Linux
|
|
# This script copies the .zshrc file to the home directory
|
|
|
|
set -e
|
|
|
|
echo "Installing dotfiles..."
|
|
|
|
# Get the directory where this script is located
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Copy .zshrc to home directory
|
|
echo "Copying .zshrc to home directory..."
|
|
cp "$SCRIPT_DIR/.zshrc" ~/.zshrc
|
|
|
|
echo "Dotfiles installation complete!"
|
|
echo ""
|
|
echo "Next steps:"
|
|
echo "1. Restart your terminal or run 'source ~/.zshrc'"
|
|
echo "2. Run 'p10k configure' to set up Powerlevel10k theme"
|
|
echo "3. If you haven't already, run the install-arch-dotfiles-requirements.sh script first"
|