Files
omarchy/bin/omarchy-update

26 lines
725 B
Plaintext
Raw Normal View History

2025-06-25 16:47:23 -07:00
#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -e
# Show logo
clear
cat <~/.local/share/omarchy/logo.txt
# Get the latest while trying to preserve any modifications
omarchy_path=~/.local/share/omarchy
git -C $omarchy_path pull --autostash
git -C $omarchy_path diff --check || git -C $omarchy_path reset --merge
# Run migrations
"$HOME/.local/share/omarchy/bin/omarchy-migrate"
# Update system packages
echo -e "\e[32m\nUpdate system packages\e[0m"
yay -Syu --noconfirm
2025-07-22 19:09:09 -04:00
# Offer to reboot if the kernel has been changed
if [ "$(uname -r | sed 's/-arch/\.arch/')" != "$(pacman -Q linux | awk '{print $2}')" ]; then
gum confirm "Linux kernel has been updated. Reboot?" && sudo reboot now
fi