Added deployLeisure.

This commit is contained in:
Carlos Sousa
2021-04-17 15:38:49 +02:00
parent d69ffd0a04
commit 1cbee9728a

View File

@@ -0,0 +1,19 @@
clear
start=`date +%s`
echo ":: Updating and Upgrading"
sudo apt update -y &> /dev/null
sudo apt upgrade -y &> /dev/null
echo ":: Installing Steam"
sudo apt install steam -y &> /dev/null
sudo apt install audacious -y &> /dev/null
echo ":: Cleaning Up"
sudo apt autoclean -y &> /dev/null
sudo apt auto-remove -y &> /dev/null
end=`date +%s`
runtime=$((end-start))
echo ":: Total Run Time: ${runtime} Seconds."