Includes modular setup, device profile support, and documentation. 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# 06-browsers.sh - Install web browsers (Chrome, Firefox, Brave)
|
|
|
|
set -e
|
|
|
|
# List of browser packages to install
|
|
BROWSERS=(google-chrome firefox brave-bin)
|
|
|
|
# Install browsers with paru (AUR helper)
|
|
echo "Installing browsers: ${BROWSERS[*]}"
|
|
paru -S --needed --noconfirm "${BROWSERS[@]}"
|
|
|
|
echo "Browsers installed."
|