changing wallpaper to be less shit

This commit is contained in:
tumillanino
2026-04-09 10:01:22 +10:00
parent 03bc0c3bba
commit 09760ca4a9
21 changed files with 4 additions and 10 deletions

BIN
docs/wallpapers/6293645.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 957 KiB

BIN
docs/wallpapers/8.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 957 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 387 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 MiB

View File

@@ -19,29 +19,23 @@ KERNEL_PACKAGES=(
kernel-cachyos-lto-modules
)
# Disable kernel install hooks so the custom kernel installs cleanly into the image
pushd /usr/lib/kernel/install.d
printf '%s\n' '#!/bin/sh' 'exit 0' > 05-rpmostree.install
printf '%s\n' '#!/bin/sh' 'exit 0' > 50-dracut.install
printf '%s\n' '#!/bin/sh' 'exit 0' >05-rpmostree.install
printf '%s\n' '#!/bin/sh' 'exit 0' >50-dracut.install
chmod +x 05-rpmostree.install 50-dracut.install
popd
# Remove stock Fedora kernel packages
for pkg in kernel kernel-core kernel-modules kernel-modules-core; do
rpm --erase "$pkg" --nodeps || true
rpm --erase "$pkg" --nodeps || true
done
# Remove leftover kernel module directory
CURRENT_MODULES=$(ls /usr/lib/modules | head -n1)
if [ -n "$CURRENT_MODULES" ]; then
rm -rf "/usr/lib/modules/$CURRENT_MODULES"
rm -rf "/usr/lib/modules/$CURRENT_MODULES"
fi
# Install the CachyOS LTO kernel (repos were added via the preceding dnf module)
dnf5 -y install "${KERNEL_PACKAGES[@]}"
# Version-lock to prevent the kernel from being overwritten by base image updates
dnf5 versionlock add "${KERNEL_PACKAGES[@]}" || true
# /boot is not used in atomic container images
rm -rf /boot/*