chore: ⚙️ Doing some tidy

This commit is contained in:
2025-11-04 21:38:49 +00:00
parent fca2008969
commit 7fd1838099
6 changed files with 119 additions and 30 deletions
+29
View File
@@ -0,0 +1,29 @@
# Justfile for system updates
update: update-dnf update-flatpak update-uv update-rust cleanup
@echo "All updates completed!"
update-dnf:
@echo "Checking for dnf updates..."
sudo dnf update -y
update-flatpak:
@echo "Checking for flatpak updates..."
sudo flatpak update -y
cleanup:
@echo "Doing a quick clean up..."
sudo dnf clean all
check-restart:
@echo "Checking if we need a restart..."
sudo dnf needs-restarting
update-uv:
@echo "updating UV"
uv self update
uv tool install ruff@latest
update-rust:
@echo "Updating Rust"
rustup update