#!/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. ################################################################ ######### Borrowed from livecd; needs sorting out ############## ################################################################ # this util-livecd.sh gets copied to overlay-image # ping_check=$(LC_ALL=C ping -c 1 www.manjaro.org | grep "1 received") configure_translation_pkgs_live(){ # Determind which language we are using local LNG_INST=$(cat ${DESTDIR}/etc/locale.conf | grep LANG= | cut -d= -f2 | cut -d. -f1) [ -n "$LNG_INST" ] || LNG_INST="en" case "$LNG_INST" in be_BY) #Belarusian FIREFOX_LNG_INST="firefox-i18n-be" THUNDER_LNG_INST="thunderbird-i18n-be" LIBRE_LNG_INST="libreoffice-be" HUNSPELL_LNG_INST="" KDE_LNG_INST="" ;; bg_BG) #Bulgarian FIREFOX_LNG_INST="firefox-i18n-bg" THUNDER_LNG_INST="thunderbird-i18n-bg" LIBRE_LNG_INST="libreoffice-bg" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-bg" ;; de*) #German FIREFOX_LNG_INST="firefox-i18n-de" THUNDER_LNG_INST="thunderbird-i18n-de" LIBRE_LNG_INST="libreoffice-de" HUNSPELL_LNG_INST="hunspell-de" KDE_LNG_INST="kde-l10n-de" ;; en*) #English (disabled libreoffice-en-US) FIREFOX_LNG_INST="" THUNDER_LNG_INST="" LIBRE_LNG_INST="" HUNSPELL_LNG_INST="hunspell-en" KDE_LNG_INST="" ;; en_GB) #British English FIREFOX_LNG_INST="firefox-i18n-en-gb" THUNDER_LNG_INST="thunderbird-i18n-en-gb" LIBRE_LNG_INST="libreoffice-en-GB" HUNSPELL_LNG_INST="hunspell-en" KDE_LNG_INST="" ;; es*) #Espanol FIREFOX_LNG_INST="firefox-i18n-es-es" THUNDER_LNG_INST="thunderbird-i18n-es-es" LIBRE_LNG_INST="libreoffice-es" HUNSPELL_LNG_INST="hunspell-es" KDE_LNG_INST="kde-l10n-es" ;; es_AR) #Espanol (Argentina) FIREFOX_LNG_INST="firefox-i18n-es-ar" THUNDER_LNG_INST="thunderbird-i18n-es-ar" LIBRE_LNG_INST="libreoffice-es" HUNSPELL_LNG_INST="hunspell-es" KDE_LNG_INST="kde-l10n-es" ;; fr*) #Francais FIREFOX_LNG_INST="firefox-i18n-fr" THUNDER_LNG_INST="thunderbird-i18n-fr" LIBRE_LNG_INST="libreoffice-fr" HUNSPELL_LNG_INST="hunspell-fr" KDE_LNG_INST="kde-l10n-fr" ;; it*) #Italian FIREFOX_LNG_INST="firefox-i18n-it" THUNDER_LNG_INST="thunderbird-i18n-it" LIBRE_LNG_INST="libreoffice-it" HUNSPELL_LNG_INST="hunspell-it" KDE_LNG_INST="kde-l10n-it" ;; pl_PL) #Polish FIREFOX_LNG_INST="firefox-i18n-pl" THUNDER_LNG_INST="thunderbird-i18n-pl" LIBRE_LNG_INST="libreoffice-pl" HUNSPELL_LNG_INST="hunspell-pl" KDE_LNG_INST="kde-l10n-pl" ;; pt_BR) #Brazilian Portuguese FIREFOX_LNG_INST="firefox-i18n-pt-br" THUNDER_LNG_INST="thunderbird-i18n-pt-br" LIBRE_LNG_INST="libreoffice-pt-BR" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-pt_br" ;; pt_PT) #Portuguese FIREFOX_LNG_INST="firefox-i18n-pt-pt" THUNDER_LNG_INST="thunderbird-i18n-pt-pt" LIBRE_LNG_INST="libreoffice-pt" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-pt" ;; ro_RO) #Romanian FIREFOX_LNG_INST="firefox-i18n-ro" THUNDER_LNG_INST="thunderbird-i18n-ro" LIBRE_LNG_INST="libreoffice-ro" HUNSPELL_LNG_INST="hunspell-ro" KDE_LNG_INST="kde-l10n-ro" ;; ru*) #Russian FIREFOX_LNG_INST="firefox-i18n-ru" THUNDER_LNG_INST="thunderbird-i18n-ru" LIBRE_LNG_INST="libreoffice-ru" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-ru" ;; sv*) #Swedish FIREFOX_LNG_INST="firefox-i18n-sv-se" THUNDER_LNG_INST="thunderbird-i18n-sv-se" LIBRE_LNG_INST="libreoffice-sv" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-sv" ;; tr*) #Turkish FIREFOX_LNG_INST="firefox-i18n-tr" THUNDER_LNG_INST="thunderbird-i18n-tr" LIBRE_LNG_INST="libreoffice-tr" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-tr" ;; uk_UA) #Ukrainian FIREFOX_LNG_INST="firefox-i18n-uk" THUNDER_LNG_INST="thunderbird-i18n-uk" LIBRE_LNG_INST="libreoffice-uk" HUNSPELL_LNG_INST="" KDE_LNG_INST="kde-l10n-uk" ;; esac } install_localization_live(){ if [ -e "/bootmnt/${install_dir}/${arch}/lng-image.sqfs" ] ; then echo "install translation packages" >> /tmp/livecd.log configure_translation_pkgs_live ${PACMAN_LNG} -Sy if [ -e "/bootmnt/${install_dir}/${arch}/kde-image.sqfs" ] ; then ${PACMAN_LNG} -S ${KDE_LNG_INST} &> /dev/null fi if [ -e "/usr/bin/firefox" ] ; then ${PACMAN_LNG} -S ${FIREFOX_LNG_INST} &> /dev/null fi if [ -e "/usr/bin/thunderbird" ] ; then ${PACMAN_LNG} -S ${THUNDER_LNG_INST} &> /dev/null fi if [ -e "/usr/bin/libreoffice" ] ; then ${PACMAN_LNG} -S ${LIBRE_LNG_INST} &> /dev/null fi if [ -e "/usr/bin/hunspell" ] ; then ${PACMAN_LNG} -S ${HUNSPELL_LNG_INST} &> /dev/null fi fi } configure_swap_live(){ local swapdev="$(fdisk -l 2>/dev/null | grep swap | cut -d' ' -f1)" if [ -e "${swapdev}" ]; then swapon ${swapdev} echo "${swapdev} swap swap defaults 0 0 #configured by manjaroiso" >>/etc/fstab fi } configure_ping_live(){ setcap cap_net_raw=ep /usr/bin/ping &> /dev/null setcap cap_net_raw=ep /usr/bin/ping6 &> /dev/null } configure_gnome_live(){ glib-compile-schemas /usr/share/glib-2.0/schemas gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor if [ -e "/usr/bin/dconf" ] ; then dconf update fi if [ -e "/usr/bin/gnome-keyring-daemon" ] ; then setcap cap_ipc_lock=ep /usr/bin/gnome-keyring-daemon &> /dev/null fi } configure_sudo_live(){ chown root:root /etc/sudoers sed -i -e 's|# %wheel ALL=(ALL) ALL|%wheel ALL=(ALL) ALL|g' /etc/sudoers chmod 440 /etc/sudoers } configure_env_live(){ echo "BROWSER=/usr/bin/xdg-open" >> /etc/environment echo "BROWSER=/usr/bin/xdg-open" >> /etc/skel/.bashrc echo "BROWSER=/usr/bin/xdg-open" >> /etc/profile # add TERM var if [ -e "/usr/bin/mate-session" ] ; then echo "TERM=mate-terminal" >> /etc/environment echo "TERM=mate-terminal" >> /etc/profile fi ## FIXME - Workaround to launch mate-terminal if [ -e "/usr/bin/mate-session" ] ; then sed -i -e "s~^.*Exec=.*~Exec=mate-terminal -e 'sudo setup'~" "/etc/skel/Desktop/installer-launcher-cli.desktop" sed -i -e "s~^.*Terminal=.*~Terminal=false~" "/etc/skel/Desktop/installer-launcher-cli.desktop" fi } configure_alsa_live(){ #set_alsa # amixer binary local alsa_amixer="chroot ${DESTDIR} /usr/bin/amixer" # enable all known (tm) outputs $alsa_amixer -c 0 sset "Master" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Front" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Side" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Surround" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Center" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "LFE" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Headphone" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Speaker" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "PCM" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Line" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "External" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "FM" 50% unmute &> /dev/null $alsa_amixer -c 0 sset "Master Mono" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Master Digital" 70% unmute &>/dev/null $alsa_amixer -c 0 sset "Analog Mix" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Aux" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Aux2" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM Center" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM Front" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM LFE" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM Side" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM Surround" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Playback" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "PCM,1" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "DAC" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "DAC,0" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "DAC,0" -12dB &> /dev/null $alsa_amixer -c 0 sset "DAC,1" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "DAC,1" -12dB &> /dev/null $alsa_amixer -c 0 sset "Synth" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "CD" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Wave" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Music" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "AC97" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "Analog Front" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "VIA DXS,0" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "VIA DXS,1" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "VIA DXS,2" 70% unmute &> /dev/null $alsa_amixer -c 0 sset "VIA DXS,3" 70% unmute &> /dev/null # set input levels $alsa_amixer -c 0 sset "Mic" 70% mute &>/dev/null $alsa_amixer -c 0 sset "IEC958" 70% mute &>/dev/null # special stuff $alsa_amixer -c 0 sset "Master Playback Switch" on &>/dev/null $alsa_amixer -c 0 sset "Master Surround" on &>/dev/null $alsa_amixer -c 0 sset "SB Live Analog/Digital Output Jack" off &>/dev/null $alsa_amixer -c 0 sset "Audigy Analog/Digital Output Jack" off &>/dev/null } configure_live_installer_live(){ if [ -e "/etc/live-installer/install.conf" ] ; then _conf_file="/etc/live-installer/install.conf" fi } configure_calamares_live(){ if [ -e "/usr/share/calamares/settings.conf" ] ; then echo "configure calamares" >> /tmp/livecd.log _conf_file="/usr/share/calamares/modules/unpackfs.conf" sed -i "s|_root-image_|/bootmnt/${install_dir}/_ARCH_/root-image.sqfs|g" $_conf_file sed -i "s|_kernel_|$manjaro_kernel|g" "/usr/share/calamares/modules/initcpio.conf" if [ -e "/bootmnt/${install_dir}/${arch}/xfce-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/xfce-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/gnome-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/gnome-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/cinnamon-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/cinnamon-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/openbox-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/openbox-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/mate-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/mate-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/kde-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/kde-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/lxde-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/lxde-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/lxqt-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/lxqt-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/enlightenment-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/enlightenment-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/pekwm-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/pekwm-image.sqfs|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/custom-image.sqfs" ] ; then sed -i "s|_desktop-image_|/bootmnt/${install_dir}/_ARCH_/custom-image.sqfs|g" $_conf_file fi if [ "${arch}" == "i686" ] ; then sed -i "s|_ARCH_|i686|g" $_conf_file else sed -i "s|_ARCH_|x86_64|g" $_conf_file fi fi } configure_thus_live(){ if [ -e "/etc/thus.conf" ] ; then echo "configure thus" >> /tmp/livecd.log _conf_file="/etc/thus.conf" fi if [ -e "$_conf_file" ] ; then sed -i "s|_root-image_|/bootmnt/${install_dir}/_ARCH_/root-image.sqfs|g" $_conf_file sed -i "s|_kernel_|$manjaro_kernel|g" $_conf_file release=$(cat /etc/lsb-release | grep DISTRIB_RELEASE | cut -d= -f2) sed -i "s|_version_|$release|g" $_conf_file if [ -e "/bootmnt/${install_dir}/${arch}/xfce-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/xfce-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro XFCE Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/gnome-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/gnome-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro Gnome Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/cinnamon-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/cinnamon-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro Cinnamon Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/openbox-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/openbox-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro Openbox Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/mate-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/mate-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro MATE Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/kde-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/kde-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro KDE Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/lxde-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/lxde-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro LXDE Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/lxqt-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/lxqt-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro LXQt Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/enlightenment-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/enlightenment-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro Enlightenment Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/pekwm-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/pekwm-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro PekWM Edition|g" $_conf_file fi if [ -e "/bootmnt/${install_dir}/${arch}/custom-image.sqfs" ] ; then sed -i "s|_desktop_|/bootmnt/${install_dir}/_ARCH_/custom-image.sqfs|g" $_conf_file sed -i "s|_title_|Manjaro Custom Edition|g" $_conf_file fi if [ "${arch}" == "i686" ] ; then sed -i "s|_ARCH_|i686|g" $_conf_file else sed -i "s|_ARCH_|x86_64|g" $_conf_file fi fi } ###################################### ######### end livecd ################# ###################################### gen_pw(){ echo $(perl -e 'print crypt($ARGV[0], "password")' ${password}) } # $1: chroot configure_machine_id(){ # set unique machine-id msg2 "Setting machine-id ..." chroot-run $1 dbus-uuidgen --ensure=/etc/machine-id #chroot-run $1 dbus-uuidgen --ensure=/var/lib/dbus/machine-id } # $1: chroot configure_user(){ # set up user and password local pass=$(gen_pw) msg2 "Creating user ${username} with password ${password} ..." chroot-run $1 useradd -m -g users -G ${addgroups} -p ${pass} ${username} } # $1: chroot configure_user_root(){ # set up root password msg2 "Setting root password ${password} ..." local _cmd=echo "root:$(gen_pw)" msg2 "Command string: $_cmd" chroot-run $1 $_cmd | chpasswd } # $1: chroot configure_hostname(){ msg2 "Setting hostname ${hostname} ..." if [[ -f $1/usr/bin/openrc ]];then local _hostname='hostname="'${hostname}'"' sed -i -e "s|^.*hostname=.*|${_hostname}|" $1/etc/conf.d/hostname else echo ${hostname} > $1/etc/hostname fi } # $1: chroot configure_plymouth(){ if [ -e $1/etc/plymouth/plymouthd.conf ] ; then sed -i -e "s/^.*Theme=.*/Theme=$plymouth_theme/" $1/etc/plymouth/plymouthd.conf fi } configure_services(){ if [[ -f ${work_dir}/root-image/usr/bin/openrc ]];then msg2 "Congiguring OpenRC ...." for svc in ${startservices_openrc[@]}; do if [[ -f $1/etc/init.d/$svc ]]; then msg2 "Setting $svc ..." [[ ! -d $1/etc/runlevels/default ]] && mkdir -p $1/etc/runlevels/default ln -sf /etc/init.d/$svc $1/etc/runlevels/default/$svc fi done else msg2 "Congiguring SystemD ...." for svc in ${startservices_systemd[@]}; do msg2 "Setting $svc ..." if [[ -f $1/usr/lib/systemd/system/$svc ]];then msg2 "Setting $svc ..." chroot-run $1 systemctl enable $svc fi # if [[ -f $1/etc/systemd/system/$svc ]];then # msg2 "Setting $svc ..." # chroot-run $1 systemctl enable $svc # fi done fi } fix_lightdm(){ getent group lightdm > /dev/null 2>&1 || groupadd -g 620 lightdm getent passwd lightdm > /dev/null 2>&1 || useradd -c 'LightDM Display Manager' -u 620 -g lightdm -d /var/run/lightdm -s /usr/bin/nologin lightdm passwd -l lightdm > /dev/null chown -R lightdm:lightdm /var/run/lightdm > /dev/null mkdir -p /run/lightdm > /dev/null mkdir -p $1/var/lib/lightdm-data } # $1: chroot configure_displaymanager(){ _displaymanager='' # do_setuplightdm msg2 "Configuring Displaymanager ..." if [ -e "$1/usr/bin/lightdm" ] ; then if [ -e "$1/usr/bin/startxfce4" ] ; then sed -i -e 's/^.*user-session=.*/user-session=xfce/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then sed -i -e 's/^.*user-session=.*/user-session=cinnamon/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/mate-session" ] ; then sed -i -e 's/^.*user-session=.*/user-session=mate/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then sed -i -e 's/^.*user-session=.*/user-session=enlightenment/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/openbox-session" ] ; then sed -i -e 's/^.*user-session=.*/user-session=openbox/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/startlxde" ] ; then sed -i -e 's/^.*user-session=.*/user-session=LXDE/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/lxqt-session" ] ; then sed -i -e 's/^.*user-session=.*/user-session=lxqt/' $1/etc/lightdm/lightdm.conf fi if [ -e "$1/usr/bin/pekwm" ] ; then sed -i -e 's/^.*user-session=.*/user-session=pekwm/' $1/etc/lightdm/lightdm.conf fi if [[ $1 != "${work_dir}/${desktop}-image" ]]; then #mkdir -p /run/lightdm > /dev/null sed -i -e "s/^.*autologin-user=.*/autologin-user=${username}/" $1/etc/lightdm/lightdm.conf sed -i -e 's/^.*autologin-user-timeout=.*/autologin-user-timeout=0/' $1/etc/lightdm/lightdm.conf #sed -i -e 's/^.*autologin-in-background=.*/autologin-in-background=true/' /etc/lightdm/lightdm.conf chroot-run $1 gpasswd -a ${username} autologin &> /dev/null chroot-run $1 groupadd autologin # livecd fix #mkdir -p $1/var/lib/lightdm-data fi #chmod +r $1/etc/lightdm/lightdm.conf if [[ -e $1/usr/bin/systemd ]]; then chroot-run $1 systemd-tmpfiles --create /usr/lib/tmpfiles.d/lightdm.conf chroot-run $1 systemd-tmpfiles --create --remove fi _displaymanager='lightdm' fi # do_setupkdm if [ -e "$1/usr/share/config/kdm/kdmrc" ] ; then chroot-run $1 xdg-icon-resource forceupdate --theme hicolor &> /dev/null if [ -e "$1/usr/bin/update-desktop-database" ] ; then chroot-run $1 update-desktop-database -q fi sed -i -e "s/^.*AutoLoginUser=.*/AutoLoginUser=${username}/" $1/usr/share/config/kdm/kdmrc sed -i -e "s/^.*AutoLoginPass=.*/AutoLoginPass=${username}/" $1/usr/share/config/kdm/kdmrc _displaymanager='kdm' fi # do_setupgdm if [ -e "$1/usr/bin/gdm" ] ; then if [ -d "$1/var/lib/AccountsService/users" ] ; then echo "[User]" > $1/var/lib/AccountsService/users/gdm if [ -e "$1/usr/bin/startxfce4" ] ; then echo "XSession=xfce" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then echo "XSession=cinnamon" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/mate-session" ] ; then echo "XSession=mate" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then echo "XSession=enlightenment" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/openbox-session" ] ; then echo "XSession=openbox" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/startlxde" ] ; then echo "XSession=LXDE" >> $1/var/lib/AccountsService/users/gdm fi if [ -e "$1/usr/bin/lxqt-session" ] ; then echo "XSession=LXQt" >> $1/var/lib/AccountsService/users/gdm fi echo "Icon=" >> $1/var/lib/AccountsService/users/gdm fi _displaymanager='gdm' fi # do_setupmdm if [ -e "$1/usr/bin/mdm" ] ; then if [ -e "$1/usr/bin/startxfce4" ] ; then sed -i 's|default.desktop|xfce.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then sed -i 's|default.desktop|cinnamon.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/openbox-session" ] ; then sed -i 's|default.desktop|openbox.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/mate-session" ] ; then sed -i 's|default.desktop|mate.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/startlxde" ] ; then sed -i 's|default.desktop|LXDE.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/lxqt-session" ] ; then sed -i 's|default.desktop|lxqt.desktop|g' $1/etc/mdm/custom.conf fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then sed -i 's|default.desktop|enlightenment.desktop|g' $1/etc/mdm/custom.conf fi _displaymanager='mdm' fi # do_setupsddm if [ -e "$1/usr/bin/sddm" ] ; then sed -i -e "s|^User=.*|User=${username}|" $1/etc/sddm.conf if [ -e "$1/usr/bin/startxfce4" ] ; then sed -i -e 's|^Session=.*|Session=xfce.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then sed -i -e 's|^Session=.*|Session=cinnamon.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/openbox-session" ] ; then sed -i -e 's|^Session=.*|Session=openbox.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/mate-session" ] ; then sed -i -e 's|^Session=.*|Session=mate.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/lxsession" ] ; then sed -i -e 's|^Session=.*|Session=LXDE.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/lxqt-session" ] ; then sed -i -e 's|^Session=.*|Session=lxqt.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then sed -i -e 's|^Session=.*|Session=enlightenment.desktop|' $1/etc/sddm.conf fi if [ -e "$1/usr/bin/startkde" ] ; then sed -i -e 's|^Session=.*|Session=plasma.desktop|' $1/etc/sddm.conf fi _displaymanager='sddm' fi # do_setuplxdm if [ -e "$1/usr/bin/lxdm" ] ; then sed -i -e "s/^.*autologin=.*/autologin=${username}/" $1/etc/lxdm/lxdm.conf if [ -e "$1/usr/bin/startxfce4" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/startxfce4|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/cinnamon-session|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/mate-session" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/mate-session|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/enlightenment_start|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/openbox-session" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/openbox-session|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/startlxde" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/lxsession|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/lxqt-session" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/lxqt-session|' $1/etc/lxdm/lxdm.conf fi if [ -e "$1/usr/bin/pekwm" ] ; then sed -i -e 's|^.*session=.*|session=/usr/bin/pekwm|' $1/etc/lxdm/lxdm.conf fi _displaymanager='lxdm' fi if [[ -e $1/usr/bin/openrc ]];then local _conf_xdm='DISPLAYMANAGER="'${_displaymanager}'"' sed -i -e "s|^.*DISPLAYMANAGER=.*|${_conf_xdm}|" $1/etc/conf.d/xdm else chroot-run $1 systemctl enable ${_displaymanager} fi } # $1: chroot configure_accountsservice(){ msg2 "Configuring AcooutsService ..." if [ -d "$1/var/lib/AccountsService/users" ] ; then echo "[User]" > $1/var/lib/AccountsService/users/${username} if [ -e "$1/usr/bin/startxfce4" ] ; then echo "XSession=xfce" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/cinnamon-session" ] ; then echo "XSession=cinnamon" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/mate-session" ] ; then echo "XSession=mate" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/enlightenment_start" ] ; then echo "XSession=enlightenment" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/openbox-session" ] ; then echo "XSession=openbox" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/startlxde" ] ; then echo "XSession=LXDE" >> $1/var/lib/AccountsService/users/${username} fi if [ -e "$1/usr/bin/lxqt-session" ] ; then echo "XSession=LXQt" >> $1/var/lib/AccountsService/users/${username} fi echo "Icon=/var/lib/AccountsService/icons/${username}.png" >> $1/var/lib/AccountsService/users/${username} fi } write_calamares_dm_conf(){ # write the conf to overlay-image/etc/calamares ? local DISPLAYMANAGER="$1/etc/calamares/modules/displaymanager.conf" echo "displaymanagers:" > "$DISPLAYMANAGER" echo " - ${_displaymanager}" >> "$DISPLAYMANAGER" echo '' >> "$DISPLAYMANAGER" echo '#executable: "startkde"' >> "$DISPLAYMANAGER" echo '#desktopFile: "plasma"' >> "$DISPLAYMANAGER" echo '' >> "$DISPLAYMANAGER" echo "basicSetup: false" >> "$DISPLAYMANAGER" } # $1: chroot configure_calamares(){ if [[ -f $1/usr/bin/calamares ]];then msg2 "Configuring Calamares ..." mkdir -p $1/etc/calamares/modules local UNPACKFS="$1/usr/share/calamares/modules/unpackfs.conf" if [ ! -e $UNPACKFS ] ; then echo "---" > "$UNPACKFS" echo "unpack:" >> "$UNPACKFS" echo " - source: \"/bootmnt/${install_dir}/${arch}/root-image.sqfs\"" >> "$UNPACKFS" echo " sourcefs: \"squashfs\"" >> "$UNPACKFS" echo " destination: \"\"" >> "$UNPACKFS" echo " - source: \"/bootmnt/${install_dir}/${arch}/${desktop}-image.sqfs\"" >> "$UNPACKFS" echo " sourcefs: \"squashfs\"" >> "$UNPACKFS" echo " destination: \"\"" >> "$UNPACKFS" fi # TODO maybe add a configuration flag in manjaro-tools.conf for default displymanager #local DISPLAYMANAGER="$1/etc/calamares/modules/displaymanager.conf" write_calamares_dm_conf $1 # if [ ! -e $DISPLAYMANAGER ] ; then # echo "---" > "$DISPLAYMANAGER" # echo "displaymanagers:" >> "$DISPLAYMANAGER" # if [ -e "${work_dir}/${desktop}-image/usr/bin/lightdm" ] ; then # echo " - lightdm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/share/config/kdm/kdmrc" ] ; then # echo " - kdm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/bin/gdm" ] ; then # echo " - gdm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/bin/mdm" ] ; then # echo " - mdm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/bin/sddm" ] ; then # echo " - sddm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/bin/lxdm" ] ; then # echo " - lxdm" >> "$DISPLAYMANAGER" # fi # if [ -e "${work_dir}/${desktop}-image/usr/bin/slim" ] ; then # echo " - slim" >> "$DISPLAYMANAGER" # fi # fi local INITCPIO="$1/usr/share/calamares/modules/initcpio.conf" if [ ! -e $INITCPIO ] ; then echo "---" > "$INITCPIO" echo "kernel: ${manjaro_kernel}" >> "$INITCPIO" fi fi }