manjaro-architect/bin/manjaro-architect.in

34 lines
721 B
Plaintext
Raw Normal View History

# !/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.
2017-02-17 21:10:40 +00:00
version=@version@
LIBDIR='@libdir@'
DATADIR='@datadir@'
2017-02-18 00:56:48 +00:00
[[ -r ${LIBDIR}/util.sh ]] && source ${LIBDIR}/util.sh
2017-02-17 21:10:40 +00:00
import ${LIBDIR}/util-menu.sh
import ${LIBDIR}/util-base.sh
2017-02-18 00:56:48 +00:00
import ${LIBDIR}/util-desktop.sh
2017-02-17 21:10:40 +00:00
import ${LIBDIR}/util-disk.sh
2017-02-17 04:19:17 +00:00
id_system
select_language
mk_connection
check_requirements
greeting
2017-02-13 17:13:21 +00:00
while true; do
main_menu_online
done