From fb211f6cd4c53aa74e26a0900743eae10eb0d58b Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Nov 06 2025 15:25:04 +0000 Subject: i3: update default background location The i3 Live image currently shows no background image. As of F42, the default backgrounds are in JXL format, so this file location needs to be updated; feh does support JXL through imlib2. While current RHEL versions still use PNG, i3 is X11 only and therefore unlikely to be included in EPEL 10 or later. https://fedoraproject.org/wiki/Changes/SwitchToJXLforDefaultWallpaper --- diff --git a/libexec/livesys/sessions.d/livesys-i3 b/libexec/livesys/sessions.d/livesys-i3 index 72c563a..b18e122 100755 --- a/libexec/livesys/sessions.d/livesys-i3 +++ b/libexec/livesys/sessions.d/livesys-i3 @@ -30,7 +30,7 @@ sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.d mkdir /home/liveuser/Desktop # setting the wallpaper -echo "/usr/bin/feh --bg-scale /usr/share/backgrounds/default.png" >> /home/liveuser/.profile +echo "/usr/bin/feh --bg-scale /usr/share/backgrounds/default.jxl" >> /home/liveuser/.profile # echoing type liveinst to start the installer echo "echo 'Please type liveinst and press Enter to start the installer'" >> /home/liveuser/.bashrc