From fcfbbb6f5b162c6dce2b00da010a77e2a8cc27b3 Mon Sep 17 00:00:00 2001 From: datalore Date: Fri, 26 Jul 2024 20:37:05 +0200 Subject: [PATCH] Added utility script for full system install --- system/full.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 system/full.sh diff --git a/system/full.sh b/system/full.sh new file mode 100755 index 0000000..88f16cd --- /dev/null +++ b/system/full.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +./installbasics.sh +./installthemes.sh +./installadditions.sh + +if getopts "v" OPTION +then + if [ "$OPTION" = "v" ] + then + ./virtualboxsetup.sh + fi +fi