9 lines
163 B
Bash
9 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
install_gnome_shell() {
|
||
|
echo 'Installing gnome-shell'
|
||
|
if [ $1 == "chrome" ]; then
|
||
|
sudo apt-get install chrome-gnome-shell -y
|
||
|
fi
|
||
|
}
|