From a48dc27f2ee47a483b7a403a6800b70d847a6a30 Mon Sep 17 00:00:00 2001 From: David Young Date: Wed, 29 Apr 2026 07:14:33 -0600 Subject: [PATCH] fix coreupdate to keep fresh --- coreupdate | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/coreupdate b/coreupdate index b11815d..c3a9691 100755 --- a/coreupdate +++ b/coreupdate @@ -20,6 +20,11 @@ EOF clear print_logo +echo "Updating CoreDesktop..." +git -C ~/.local/share/coredesktop pull +sudo cp ~/.local/share/coredesktop/coreupdate ~/.local/bin/coreupdate +sudo cp ~/.local/share/coredesktop/corerefresh ~/.local/bin/corerefresh + echo "Updating Arch..." sudo pacman -Syu @@ -48,4 +53,19 @@ mise upgrade --bump ruby mise reshim gem update +cd ~/.local/share/coredesktop +source utils.sh +source packages.conf + +echo "Checking for new packages..." +install_packages "${SYSTEM_UTILS[@]}" +install_packages "${DEV_TOOLS[@]}" +install_packages "${MAINTENANCE[@]}" +install_packages "${DESKTOP[@]}" +install_packages "${MEDIA[@]}" +install_packages "${FONTS[@]}" + +echo "Checking for new flatpaks..." +. install-flatpaks.sh + echo "Done. You probably want to reboot your system..."