cli opts changes

This commit is contained in:
Francois B 2018-03-25 22:46:40 +02:00
parent ba6abe317d
commit f1e894e587
3 changed files with 24 additions and 4 deletions

View file

@ -159,7 +159,22 @@ function installGamesMenu () {
}
#
# Steam (Menu only, due to licence agreement)
# Steam (headless)
#
function installSteam () {
runCmd "echo steam steam/purge note | sudo debconf-set-selections" \
"accepting steam licence"
runCmd "echo steam steam/license note | sudo debconf-set-selections" \
"accepting steam licence 2/3"
runCmd "echo steam steam/question select I AGREE | sudo debconf-set-selections" \
"accepting steam licence 3/3"
installPackage apt steam
}
#
# Steam (Menu)
#
function installSteamMenu () {
runCmd "echo steam steam/purge note | sudo debconf-set-selections" \