Compare commits

...

4 Commits

Author SHA1 Message Date
4cffe787f1 Remove extra slash in remove script
All checks were successful
Build container image / Build and push image (push) Successful in 22m47s
2025-11-09 16:38:38 -05:00
24dc8df87b Create and install notify service for updates 2025-11-09 16:29:05 -05:00
a9c6b4035d Install man for man pages 2025-11-09 16:28:48 -05:00
463b75c7f5 Attempt to cull out unneeded packages 2025-11-09 15:40:58 -05:00
5 changed files with 26 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ dnf -y install /tmp/rpms/ublue-os/ublue-os-akmods*.rpm
dnf -y install /tmp/rpms/kmods/kmod-openrazer*.rpm
# install git
dnf -y install git dnf5-plugins
dnf -y install git dnf5-plugins man
# copy
/ctx/copyfiles.sh

View File

@@ -23,4 +23,4 @@ dnf5 -y remove firefox \
libibverbs \
libpcap \
iptables-utils \
console-login-helper-messages \
console-login-helper-messages

View File

@@ -15,3 +15,12 @@ systemctl --global -f enable flatpak-user-update.timer
systemctl --global -f enable quickshell.service
systemctl --global -f enable hyprpolkitagent.service
systemctl --global -f enable swww.service
systemctl --global -f enable notify-update.service
# Remove apply update service (make sure disabled)
systemctl disable -f bootc-fetch-apply-updates.timer
systemctl disable -f bootc-publish-rhsm-facts.service
sudo rm -f /usr/lib/systemd/system/bootc-fetch-apply-updates.timer \
/usr/lib/systemd/system/bootc-fetch-apply-updates.service \
/usr/lib/systemd/system/bootc-publish-rhsm-facts.service

View File

@@ -0,0 +1,4 @@
# see `man dnf.conf` for defaults and possible options
[main]
install_weak_deps=False

View File

@@ -0,0 +1,11 @@
[Unit]
Description=Notify to update
After=bootc-status-updated.target
[Service]
Type=exec
ExecStart=/usr/bin/send-notify "Updated system" "New update! Reboot to apply!"
Slice=app-graphical.slice
[Install]
WantedBy=bootc-status-updated.target