diff options
Diffstat (limited to 'guix-strap/guix-setup')
-rwxr-xr-x | guix-strap/guix-setup | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/guix-strap/guix-setup b/guix-strap/guix-setup new file mode 100755 index 0000000..97870c3 --- /dev/null +++ b/guix-strap/guix-setup @@ -0,0 +1,34 @@ +#!/usr/bin/env bash + +welcome() { + cat<<"EOF" + ░░░ ░░░ + ░░▒▒░░░░░░░░░ ░░░░░░░░░▒▒░░ + ░░▒▒▒▒▒░░░░░░░ ░░░░░░░▒▒▒▒▒░ + ░▒▒▒░░▒▒▒▒▒ ░░░░░░░▒▒░ + ░▒▒▒▒░ ░░░░░░ + ▒▒▒▒▒ ░░░░░░ + ▒▒▒▒▒ ░░░░░ + ░▒▒▒▒▒ ░░░░░ + ▒▒▒▒▒ ░░░░░ + ▒▒▒▒▒ ░░░░░ + ░▒▒▒▒▒░░░░░ + ▒▒▒▒▒▒░░░ + ▒▒▒▒▒▒░ + ____ _ _ _____ __ ____ _ + / ___| | | |_ _\ \/ / / ___|| |_ _ __ __ _ _ __ + | | _| | | || | \ / \___ \| __| '__/ _` | '_ \ + | |_| | |_| || | / \ ___) | |_| | | (_| | |_) | + \____|\___/|___/_/\_\ |____/ \__|_| \__,_| .__/ + |_| +This script installs GNU Guix on your system + +https://www.gnu.org/software/guix/ +EOF + echo -n "Press return to continue..." + read -r ANSWER +} + +welcome +./guix-partition +./guix-setup |