2025-07-02 22:33:23 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Browse the web with the most popular browser. See https://www.google.com/chrome/
|
|
|
|
cd /tmp
|
2025-07-05 08:01:20 -07:00
|
|
|
curl -o ./google-chrome-stable_current_amd64.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
2025-07-02 22:33:23 -07:00
|
|
|
sudo apt install -y ./google-chrome-stable_current_amd64.deb
|
|
|
|
rm google-chrome-stable_current_amd64.deb
|
|
|
|
xdg-settings set default-web-browser google-chrome.desktop
|
|
|
|
cd -
|