Skip to content

Commit

Permalink
add chrome install script (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
topher200 authored Mar 6, 2024
1 parent 5996410 commit 8c02576
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/install-chrome.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# from https://www.geekersdigest.com/how-to-install-google-chrome-from-apt-repository/ (2024)
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/chrome.list
sudo apt-get update
sudo apt-get install google-chrome-stable

0 comments on commit 8c02576

Please sign in to comment.