2023-12-09 10:50:27 -08:00
!/usr/bin/env bash
2023-12-05 16:56:37 -08:00
2023-12-06 10:43:02 -08:00
FLATPAK ( ) {
2023-12-09 10:50:27 -08:00
if ! ssh root@localhost 'flatpak update -y' ; then
zenity --error \
--title= "Sovran_SystemsOS Updater" \
--text= "Could Not Update Flatpaks."
exit 1
2023-12-06 10:43:02 -08:00
fi
2023-12-06 10:08:06 -08:00
}
2023-12-06 09:14:02 -08:00
SPICE ( ) {
2023-12-09 10:50:27 -08:00
xterm -fa 'Noto Mono' -fs 15 -fg white -bg black -e bash -c "ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure'"
2023-12-09 11:00:52 -08:00
if [ [ $? != 1 ] ] ; then
2023-12-09 10:50:27 -08:00
zenity --info \
--ellipsize \
--no-wrap \
--width= 700 \
2023-12-10 19:50:42 -08:00
--title= "Sovran_SystemsOS" \
2023-12-10 19:26:12 -08:00
--text= "Yay complete! Please reboot when you are ready."
2023-12-09 10:50:27 -08:00
exit 1
else
zenity --error \
2023-12-10 19:26:12 -08:00
--width= 700 \
2023-12-10 19:50:42 -08:00
--title= "Sovran_SystemsOS" \
2023-12-10 19:26:12 -08:00
--text= "Could not complete the update."
2023-12-09 10:50:27 -08:00
exit 2
2023-12-06 10:43:02 -08:00
fi
2023-12-05 16:56:37 -08:00
2023-12-06 10:43:02 -08:00
}
2023-12-06 10:08:06 -08:00
2023-12-09 10:50:27 -08:00
#########
2023-12-09 10:58:34 -08:00
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Updater/Updater%20Source%20Files/Intro.md" |
2023-12-09 10:50:27 -08:00
zenity --text-info \
--width= 1000 \
--height= 700 \
2023-12-10 19:50:42 -08:00
--title= "Sovran_SystemsOS"
2023-12-06 09:14:02 -08:00
2023-12-06 10:08:06 -08:00
if [ [ $? -eq 1 ] ] ; then
2023-12-06 09:14:02 -08:00
2023-12-09 10:50:27 -08:00
exit 1
2023-12-06 09:14:02 -08:00
2023-12-09 10:50:27 -08:00
else
2023-12-06 09:14:02 -08:00
2023-12-09 10:50:27 -08:00
FLATPAK
2023-12-06 10:08:06 -08:00
2023-12-10 19:50:42 -08:00
SPICE | zenity --progress --no-cancel --auto-close --width= 550 --pulsate --text= "Updating now. In rare cases, it could take up to 3 hours. Please Be Patient..." ----title= "Sovran_SystemsOS"
2023-12-06 11:04:31 -08:00
2023-12-06 10:08:06 -08:00
fi
2023-12-06 09:15:50 -08:00
2023-12-02 13:24:02 -08:00
exit 0