This commit is contained in:
2025-12-09 21:23:12 +02:00
parent c70ad02033
commit 0dabe39be9
15 changed files with 191 additions and 14 deletions

View File

@@ -52,6 +52,16 @@ else
exit 1
fi
# Copy .profile to home directory
echo ""
print_status "Installing .profile configuration..."
if cp "$SCRIPT_DIR/.profile" ~/.profile; then
print_success ".profile installed to ~/.profile"
else
print_error "Failed to copy .profile"
exit 1
fi
# Copy .aliases to home directory
echo ""
print_status "Installing .aliases configuration..."