mirror of
https://gitlab.manjaro.org/applications/manjaro-architect
synced 2024-11-08 01:10:26 +00:00
34 lines
716 B
Plaintext
34 lines
716 B
Plaintext
# !/bin/bash
|
|
#
|
|
# Architect Installation Framework (version 2.3.1 - 26-Mar-2016)
|
|
#
|
|
# Written by Carl Duff for Architect Linux
|
|
#
|
|
# Modified by Chrysostomus to install manjaro instead
|
|
#
|
|
# This program is free software, provided under the GNU General Public License
|
|
# as published by the Free Software Foundation. So feel free to copy, distribute,
|
|
# or modify it as you wish.
|
|
|
|
version=@version@
|
|
|
|
LIBDIR='@libdir@'
|
|
DATADIR='@datadir@'
|
|
SYSCONFDIR='@sysconfdir@'
|
|
|
|
import ${LIBDIR}/util.sh
|
|
import ${LIBDIR}/util-menu.sh
|
|
import ${LIBDIR}/util-base.sh
|
|
import $[LIBDIR}/util-desktop.sh
|
|
import ${LIBDIR}/util-disk.sh
|
|
|
|
id_system
|
|
select_language
|
|
mk_connection
|
|
check_requirements
|
|
greeting
|
|
|
|
while true; do
|
|
main_menu_online
|
|
done
|