Software/Sovran_SystemsOS_Updater/Updater Source Files/Update_Sovran_SystemsOS

57 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-05-22 19:32:08 -07:00
#!/usr/bin/env bash
2023-05-22 14:32:15 -07:00
2023-05-22 22:23:31 -07:00
2023-05-23 12:22:45 -07:00
cat "/home/free/Documents/Sovran Systems/Git Sovran Systems/Sovran_Systems_Packages_Git/Sovran_SystemsOS_Updater/Updater Source Files/Intro.md" |
zenity --text-info \
--title="Sovran_SystemsOS Updater" \
2023-05-23 12:22:45 -07:00
--width=1110 \
--height=705
if [[ $? -eq 1 ]]; then
zenity --info \
--title="Sovran_SystemsOS Updater" \
--text="Update Canceled By User"
exit 1
fi
2023-05-22 22:23:31 -07:00
2023-05-22 14:32:15 -07:00
password=$(zenity --password --title="Sovran_SystemsOS Updater")
if [ $? -eq 1 ] ; then
zenity --info \
--title="Sovran_SystemsOS Updater" \
--text="Update Canceled By User"
2023-05-22 14:32:15 -07:00
exit 2
2023-05-22 14:32:15 -07:00
else
2023-05-22 21:56:34 -07:00
echo -e "$password" | sudo -S rsync -av /home/free/Documents/Sovran\ Systems/My\ NixOS\ Laptop/configuration.nix /etc/nixos/configuration.nix
2023-05-22 14:32:15 -07:00
pushd /etc/nixos/
2023-05-23 09:44:29 -07:00
echo -e "$password" | sudo -S nix flake update
2023-05-22 14:32:15 -07:00
popd
2023-05-23 09:44:29 -07:00
echo -e "$password" | sudo -S nixos-rebuild switch --impure |
zenity --progress \
--no-cancel \
--auto-close \
--pulsate \
--title="Sovran_SystemsOS Updater"
2023-05-22 14:32:15 -07:00
2023-05-22 14:32:15 -07:00
zenity --info \
--ellipsize \
--no-wrap \
--title="Sovran_SystemsOS Updater" \
--text="Complete! Please Reboot."
fi
exit 0