dotfiles/modules/07-browsers.sh
Martin Büchler 7d13e6ff1c chore: initial commit of all dotfiles, configs, and setup scripts
Includes modular setup, device profile support, and documentation.

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 23:05:28 +02:00

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."