25 lines
797 B
Bash
Executable File
25 lines
797 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo
|
|
|
|
if [[ ! -d /usr/lib/modules/$(uname -r) ]]; then
|
|
gum confirm "Linux kernel has been updated. Reboot?" && nomarchy-system-reboot
|
|
elif [[ -f $HOME/.local/state/nomarchy/reboot-required ]]; then
|
|
gum confirm "Updates require reboot. Ready?" && nomarchy-system-reboot
|
|
fi
|
|
|
|
running_hyprland=$(readlink /proc/$(pgrep -x Hyprland)/exe 2>/dev/null)
|
|
if [[ $running_hyprland == *"(deleted)"* ]]; then
|
|
gum confirm "Hyprland has been updated. Reboot?" && nomarchy-system-reboot
|
|
fi
|
|
|
|
for file in "$HOME"/.local/state/nomarchy/restart-*-required; do
|
|
if [[ -f $file ]]; then
|
|
filename=$(basename "$file")
|
|
service=$(echo "$filename" | sed 's/restart-\(.*\)-required/\1/')
|
|
echo "Restarting $service"
|
|
nomarchy-state clear "$filename"
|
|
nomarchy-restart-"$service"
|
|
fi
|
|
done
|