mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-24 07:44:20 +01:00
8 lines
249 B
Bash
8 lines
249 B
Bash
if ! command -v google-chrome &>/dev/null; then
|
|
cd ~/Downloads
|
|
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
|
|
cd -
|
|
fi
|