10 lines
304 B
Bash
10 lines
304 B
Bash
#!/bin/bash
|
|
|
|
install_chrome() {
|
|
echo 'Installing Google Chrome'
|
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
sudo dpkg -i ./google-chrome-stable_current_amd64.deb
|
|
rm google-chrome-stable_current_amd64.deb
|
|
sudo apt-get install chrome-gnome-shell -y
|
|
}
|