PortValhalla/scripts/Software/common-apt/install.sh

9 lines
154 B
Bash
Executable file

#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE"
else
apt install -y screen steam vim docker.io docker-compose
fi