diff --git a/.github/release-nest-v3-nvidia-iso b/.github/release-nest-v3-nvidia-iso index d8263ee..56a6051 100644 --- a/.github/release-nest-v3-nvidia-iso +++ b/.github/release-nest-v3-nvidia-iso @@ -1 +1 @@ -2 \ No newline at end of file +1 \ No newline at end of file diff --git a/chroot_scripts/2-install-live-lists.sh b/chroot_scripts/2-install-live-lists.sh index 2aa1dae..04f1343 100755 --- a/chroot_scripts/2-install-live-lists.sh +++ b/chroot_scripts/2-install-live-lists.sh @@ -18,5 +18,6 @@ do done apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $(cat /chroot_scripts/live_list | tr "\n" " ") - +systemctl mask fwupd || true +systemctl mask nmdb || true diff --git a/hooks/5-add-autologin.chroot b/hooks/5-add-autologin.chroot new file mode 100755 index 0000000..8471052 --- /dev/null +++ b/hooks/5-add-autologin.chroot @@ -0,0 +1,9 @@ +#!/bin/bash + +mkdir -p /etc/gdm3 || true +mkdir -p /etc/sddm.conf.d/ || true +echo -e '[daemon]\nAutomaticLogin=pikaos\nAutomaticLoginEnable=True' >> /etc/gdm3/daemon.conf || true +sed '/WaylandEnable=false/ s/^\#*/\#/' -i /etc/gdm3/daemon.conf || true +ln -sf /etc/gdm3/daemon.conf /etc/gdm3/custom.conf +echo -e '[Autologin]\nUser=pikaos\nSession=plasma' > /etc/sddm.conf.d/zautologin.conf || true +echo -e '[User]\nSession=gnome\nIcon=/home/pikaos/.face\nSystemAccount=false' > /var/lib/AccountsService/users/pikaos || true diff --git a/hooks/999-cleanup-apt-cache.chroot b/hooks/999-cleanup-apt-cache.chroot index d94bbf3..c740c5a 100755 --- a/hooks/999-cleanup-apt-cache.chroot +++ b/hooks/999-cleanup-apt-cache.chroot @@ -4,4 +4,6 @@ rm -f /var/lib/apt/lists/*_Packages rm -f /var/lib/apt/lists/*_Sources rm -f /var/lib/apt/lists/*_Translation-* +systemctl unmask fwupd || true +systemctl unmask nmdb || true apt clean -y diff --git a/info.sh b/info.sh index 048eb46..a6b7663 100755 --- a/info.sh +++ b/info.sh @@ -6,7 +6,7 @@ export LIVE_BOOT_LIVE_PATH="$LIVE_BOOT_DATA_PATH/live" export ROOTFS_PATH="$LIVE_BOOT_PATH/rootfs" export LIVE_HOSTNAME="pikaos" export ISO_DISTNAME="#DISTNAME#" -export ISO_KERNEL="6.10.7-pikaos" +export ISO_KERNEL="6.11.0-pikaos" export ISO_ARCH="#ARCH#" export ISO_RELEASE="4.0" export ISO_DESKTOP="KDE"