Linux Lite Forums

Full Version: Steam silent install script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I made this along with a desktop icon to install Steam silently with a notification saying it is doing it and when it is done. I thought I would share the script to make it easier for someone to do it. The desktop launcher I am sure anyone can make so I am not including it. This is only for 18.04 based and up. You can adjust for using with 16.04 based.


Code:
#!/bin/bash


notify-send --expire-time=10000 'Hello SuperGamer User' 'This is silently installing the Steam client, please be patient'


pkexec apt install steam --yes --assume-yes


rm -f /home/*/Desktop/Steam*


notify-send --expire-time=10000 'Hello SuperGamer User' 'Congratulations, the install has finished'