This commit is contained in:
2026-01-08 12:28:54 +00:00
commit d2a473c2bd
45 changed files with 3739 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/sh
# Install Chromium browser (from Ubuntu repos - more reliable than downloading Chrome)
set -e
echo "Installing Chromium browser..."
# Install Chromium from Ubuntu repos
apt-get update
apt-get install -y chromium-browser
# Create symlink so scripts expecting google-chrome-stable work
ln -sf /usr/bin/chromium-browser /usr/bin/google-chrome-stable
# Clean up
apt-get clean
rm -rf /var/lib/apt/lists/*
echo "Chromium browser installed."