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-13 10:48:48 -08:00
zenity --error \
--title= "Sovran_SystemsOS Updater" \
--text= "Could Not Update Flatpaks."
2023-12-09 10:50:27 -08:00
2023-12-13 10:48:48 -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 ( ) {
2024-03-13 16:00:01 -07:00
time_stamp = $( date +%Y-%m-%d-%T)
mkdir -p /home/free/Documents/Updater_App_Logs
2024-03-13 18:41:13 -07:00
if ! ssh root@localhost 'cd /etc/nixos && nix flake update && nixos-rebuild switch --impure &> /home/free/Documents/Updater_App_Logs/' $time_stamp '_Updater_Log.txt' ; then
2023-12-09 10:50:27 -08:00
2023-12-12 10:17:30 -08:00
zenity --error \
--width= 400 \
2023-12-13 10:48:48 -08:00
--title= "Sovran_SystemsOS Updater" \
--text= "Could not complete the Sovran_SystemsOS update."
2023-12-09 10:50:27 -08:00
2024-03-13 16:58:38 -07:00
exit 1
2023-12-12 13:42:26 -08:00
else
2023-12-13 10:48:48 -08:00
zenity --info \
--ellipsize \
--no-wrap \
--width= 500 \
--title= "Sovran_SystemsOS 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-13 10:48:48 -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 \
2023-12-11 15:28:04 -08:00
--height= 750 \
2023-12-13 10:48:48 -08:00
--title= "Sovran_SystemsOS 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-13 10:48:48 -08:00
exit 1
2023-12-06 09:14:02 -08:00
2023-12-12 13:46:28 -08:00
else
2023-12-13 10:48:48 -08:00
FLATPAK | zenity --progress --no-cancel --auto-close --width= 460 --pulsate --text= "Updating Flatpaks now..." --title= "Sovran_SystemsOS Updater"
2023-12-12 13:57:21 -08:00
2024-03-13 17:47:38 -07:00
SPICE | zenity --progress --no-cancel --auto-close --width= 850 --pulsate --text= "Updating now. In rare cases, it could take up to 3 hours. Go have some herbal tea and relax while the update is in progress." --title= "Sovran_SystemsOS Updater"
2023-12-12 10:17:30 -08:00
2024-03-13 18:14:07 -07:00
find /home/free/Documents/Updater_App_Logs -name "*.txt" -type f -mtime +5 -delete
2023-12-06 10:08:06 -08:00
fi
2023-12-06 09:15:50 -08:00
2024-03-13 16:00:01 -07:00
exit 0