manjaro-tools/lib/util-iso-calamares.sh

134 lines
4.3 KiB
Bash
Raw Normal View History

2015-01-29 05:12:17 +01:00
#!/bin/bash
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
write_calamares_machineid_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/machineid.conf"
echo "systemd: false" > $conf
echo "dbus: true" >> $conf
echo "symlink: false" >> $conf
2015-01-29 05:12:17 +01:00
}
write_calamares_finished_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/finished.conf"
echo '---' > "$conf"
echo 'restartNowEnabled: true' >> "$conf"
echo 'restartNowChecked: false' >> "$conf"
echo 'restartNowCommand: "shutdown -r now"' >> "$conf"
}
write_calamares_services_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/services.conf"
echo '---' > "$conf"
echo '' >> "$conf"
if [[ ${initsys} == 'openrc' ]];then
echo 'services:' >> "$conf"
for s in ${start_openrc[@]};do
echo ' - name: '"$s" >> "$conf"
echo ' mandatory: false' >> "$conf"
echo '' >> "$conf"
done
echo 'targets:' >> "$conf"
echo ' - name: "graphical"' >> "$conf"
echo ' mandatory: false' >> "$conf"
else
echo 'services:' > "$conf"
for s in ${start_systemd[@]};do
echo ' - name: '"$s" >> "$conf"
echo ' mandatory: false' >> "$conf"
echo '' >> "$conf"
done
echo 'targets:' >> "$conf"
echo ' - name: "graphical"' >> "$conf"
echo ' mandatory: true' >> "$conf"
fi
}
2015-01-29 05:12:17 +01:00
write_calamares_dm_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/displaymanager.conf"
echo "displaymanagers:" > "$conf"
echo " - ${displaymanager}" >> "$conf"
echo '' >> "$conf"
echo '#executable: "startkde"' >> "$conf"
echo '#desktopFile: "plasma"' >> "$conf"
echo '' >> "$conf"
echo "basicSetup: false" >> "$conf"
2015-01-29 05:12:17 +01:00
}
write_calamares_initcpio_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/initcpio.conf"
echo "---" > "$conf"
echo "kernel: ${manjaro_kernel}" >> "$conf"
2015-01-29 05:12:17 +01:00
}
write_calamares_unpack_conf(){
2015-02-13 01:21:57 +01:00
local conf="$1/etc/calamares/modules/unpackfs.conf"
echo "---" > "$conf"
echo "unpack:" >> "$conf"
echo " - source: \"/bootmnt/${install_dir}/${arch}/root-image.sqfs\"" >> "$conf"
echo " sourcefs: \"squashfs\"" >> "$conf"
echo " destination: \"\"" >> "$conf"
echo " - source: \"/bootmnt/${install_dir}/${arch}/${custom}-image.sqfs\"" >> "$conf"
echo " sourcefs: \"squashfs\"" >> "$conf"
echo " destination: \"\"" >> "$conf"
}
2015-01-29 05:12:17 +01:00
write_calamares_users_conf(){
local conf="$1/etc/calamares/modules/users.conf"
echo "---" > "$conf"
echo "userGroup: users" >> "$conf"
echo "defaultGroups:" >> "$conf"
2015-02-13 22:07:41 +01:00
local IFS=','
for g in ${addgroups[@]};do
echo " - $g" >> "$conf"
done
2015-02-13 22:07:41 +01:00
unset IFS
echo "autologinGroup: autologin" >> "$conf"
echo "sudoersGroup: wheel" >> "$conf"
}
2015-01-29 05:12:17 +01:00
configure_calamares(){
2015-02-13 01:21:57 +01:00
if [[ -f $1/usr/bin/calamares ]];then
msg2 "Configuring Calamares ..."
mkdir -p $1/etc/calamares/modules
write_calamares_unpack_conf $1
write_calamares_dm_conf $1
write_calamares_initcpio_conf $1
if [[ ${initsys} == 'openrc' ]];then
write_calamares_machineid_conf $1
write_calamares_finished_conf $1
fi
write_calamares_services_conf $1
write_calamares_users_conf $1
2015-02-13 01:21:57 +01:00
mkdir -p $1/home/${username}/Desktop
cp $1/usr/share/applications/calamares.desktop $1/home/${username}/Desktop/calamares.desktop
chmod a+x $1/home/${username}/Desktop/calamares.desktop
# chown ${username}:users $1/home/${username}/Desktop/calamares.desktop
echo "QT_STYLE_OVERRIDE=gtk" >> $1/etc/environment
fi
2015-01-29 05:12:17 +01:00
}
configure_thus(){
2015-02-13 01:21:57 +01:00
if [[ -f $1/usr/bin/thus ]];then
msg2 "Configuring Thus ..."
local conf="$1/etc/thus.conf"
sed -i "s|_version_|$iso_version|g" $conf
sed -i "s|_kernel_|$manjaro_kernel|g" $conf
sed -i "s|_root-image_|/bootmnt/${install_dir}/${arch}/root-image.sqfs|g" $conf
sed -i "s|_desktop-image_|/bootmnt/${install_dir}/${arch}/${custom}-image.sqfs|g" $conf
echo "QT_STYLE_OVERRIDE=gtk" >> $1/etc/environment
mkdir -p $1/home/${username}/Desktop
cp $1/usr/share/applications/thus.desktop $1/home/${username}/Desktop/thus.desktop
chmod a+x $1/home/${username}/Desktop/thus.desktop
# chown ${username}:users $1/home/${username}/Desktop/thus.desktop
fi
2015-01-29 05:12:17 +01:00
}