9 lines
224 B
Bash
9 lines
224 B
Bash
#!/bin/bash
|
|
|
|
install_chrome() {
|
|
echo 'Installing Google Chrome'
|
|
sudo dnf install fedora-workstation-repositories
|
|
sudo dnf config-manager --set-enabled google-chrome
|
|
sudo dnf install google-chrome-stable -y
|
|
}
|