- Clarify agent safety in AGENTS.md
- Update devtools package name
- Update Waybar config symlink for device profile
🤖 Generated with opencode
Co-Authored-By: opencode <noreply@opencode.ai>
23 lines
323 B
Bash
Executable File
23 lines
323 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install development tools and utilities
|
|
|
|
DEVTOOLS_PACKAGES=(
|
|
git
|
|
python
|
|
nodejs
|
|
npm
|
|
docker
|
|
jq
|
|
ripgrep
|
|
fd
|
|
btop
|
|
htop
|
|
lazygit
|
|
visual-studio-code-bin
|
|
opencode
|
|
)
|
|
|
|
paru -S --needed --noconfirm "${DEVTOOLS_PACKAGES[@]}"
|
|
|
|
echo "Development tools installed."
|