mirror of
https://gitlab.manjaro.org/applications/manjaro-architect
synced 2024-11-06 03:20:36 +00:00
39 lines
884 B
Plaintext
39 lines
884 B
Plaintext
# !/bin/bash
|
|
#
|
|
# Architect Installation Framework (2016-2017)
|
|
#
|
|
# Written by Carl Duff and @mandog for Archlinux
|
|
# Heavily modified and re-written by @Chrysostomus to install Manjaro instead
|
|
# Contributors: @papajoker, @oberon and the Manjaro-Community.
|
|
#
|
|
# 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@'
|
|
|
|
[[ -r ${LIBDIR}/util.sh ]] && source ${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
|
|
|
|
menu_choice
|
|
|
|
if [[ menu_opt == "advanced" ]]; then
|
|
import ${LIBDIR}/util-menu-full.sh
|
|
main_menu_full
|
|
else
|
|
main_menu
|
|
fi
|