last fixes and changes for Ganymede Release

This commit is contained in:
Johannes Kamprad
2025-11-24 16:50:29 +01:00
parent c93c7223cc
commit 11728af9a4
4 changed files with 23 additions and 8 deletions
@@ -1,3 +1,3 @@
[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin liveuser --noclear %I 38400 linux
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin liveuser - $TERM
+1
View File
@@ -204,6 +204,7 @@ bluedevil
breeze-gtk
dolphin
dolphin-plugins
endeavouros-konsole-colors
eos-breeze-sddm
ffmpegthumbs
fwupd
+20 -7
View File
@@ -1,7 +1,20 @@
#!/usr/bin/env bash
# Get mirrorlist for offline installs
wget -qN --show-progress -P "airootfs/etc/pacman.d/" "https://raw.githubusercontent.com/endeavouros-team/EndeavourOS-ISO/main/mirrorlist"
# add date to wallpaper
cp airootfs/root/livewall.png airootfs/root/livewall-original.png
magick airootfs/root/livewall.png \
-gravity NorthEast \
-pointsize 24 \
-fill white \
-font "DejaVu-Sans" \
-annotate +10+10 "$(date '+%Y-%m-%d')" \
airootfs/root/livewall.png
# generating actual ranked mirrorlist to fetch packages for offline install in run_before_squashfs later
mkdir -p "airootfs/etc/pacman.d/"
reflector --country "$(curl -s https://ipapi.co/country_name/)" --protocol https --sort rate --latest 10 --save airootfs/etc/pacman.d/mirrorlist
# Get wallpaper for installed system
wget -qN --show-progress -P "airootfs/root/" "https://raw.githubusercontent.com/endeavouros-team/Branding/master/backgrounds/endeavouros-wallpaper.png"
@@ -10,12 +23,12 @@ wget -qN --show-progress -P "airootfs/root/" "https://raw.githubusercontent.com/
# Make sure build scripts are executable
chmod +x "./"{"mkarchiso","run_before_squashfs.sh"}
get_pkg() {
sudo pacman -Syw "$1" --noconfirm --cachedir "airootfs/root/packages" \
&& sudo chown $USER:$USER "airootfs/root/packages/"*".pkg.tar"*
}
#get_pkg() {
# sudo pacman -Syw "$1" --noconfirm --cachedir "airootfs/root/packages" \
# && sudo chown $USER:$USER "airootfs/root/packages/"*".pkg.tar"*
#}
get_pkg "eos-settings-plasma"
#get_pkg "eos-settings-plasma"
# Build liveuser skel
cd "airootfs/root/endeavouros-skel-liveuser"
+1
View File
@@ -7,3 +7,4 @@ rm airootfs/root/endeavouros-wallpaper.png
rm airootfs/root/endeavouros-skel-liveuser/*.pkg.tar.zst
rm -rf airootfs/etc/pacman.d/
rm eosiso*.log
mv airootfs/root/livewall-original.png airootfs/root/livewall.png