This commit is contained in:
2025-07-08 15:41:57 +03:00
parent 4e21f8615f
commit 5edf866351
4 changed files with 250 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
#!/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"