2023-12-12 13:42:26 -08:00
#!/usr/bin/env bash
2023-12-05 16:56:37 -08:00
2023-12-12 13:57:21 -08:00
FLATPAK ( ) {
if ! ssh root@localhost 'flatpak update -y' ; then
2023-12-12 13:42:26 -08:00
2023-12-12 13:57:21 -08:00
zenity --error \
--title= "Sovran_SystemsOS_Light Updater" \
--text= "Could Not Update Flatpaks."
2023-12-09 10:50:27 -08:00
2023-12-12 13:57:21 -08:00
exit 1
2023-12-06 10:43:02 -08:00
fi
2023-12-12 13:57:21 -08:00
}
2023-12-06 10:08:06 -08:00
2023-12-12 13:57:21 -08:00
SPICE ( ) {
if ! xterm -T "Sovran_SystemsOS_Light Updater" -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'" ; then
2023-12-09 10:50:27 -08:00
2023-12-12 10:17:30 -08:00
zenity --error \
--width= 400 \
2023-12-12 13:42:26 -08:00
--title= "Sovran_SystemsOS_Light Updater" \
2023-12-12 13:57:21 -08:00
--text= "Could not complete the update."
2023-12-09 10:50:27 -08:00
2023-12-11 15:54:29 -08:00
exit 1
2023-12-09 10:50:27 -08:00
2023-12-12 13:42:26 -08:00
else
2023-12-12 13:57:21 -08:00
zenity --info \
--ellipsize \
--no-wrap \
--width= 500 \
--title= "Sovran_SystemsOS_Light Updater" \
--text= "Yay complete! Please reboot when you are ready."
2023-12-12 13:42:26 -08:00
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-12 13:57:21 -08:00
#########
2023-12-12 13:42:26 -08:00
curl "https://git.sovransystems.com/Sovran_Systems/Software/raw/branch/main/Sovran_SystemsOS_Light_Updater/Updater%20Source%20Files/Intro.md" |
2023-12-09 10:50:27 -08:00
zenity --text-info \
--width= 1000 \
2023-12-11 15:28:04 -08:00
--height= 750 \
2023-12-12 13:42:26 -08:00
--title= "Sovran_SystemsOS_Light Updater"
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-12 13:46:28 -08:00
else
2023-12-12 13:57:21 -08:00
FLATPAK
SPICE | zenity --progress --no-cancel --auto-close --width= 660 --pulsate --text= "Updating now. In rare cases, it could take up to 3 hours. Please be patient..." --title= "Sovran_SystemsOS_Light Updater"
2023-12-12 10:17:30 -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