diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-21 22:40:49 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-21 22:40:49 -0500 |
| commit | d88e6fc3b3460ca643ce66398696262fc34a1b97 (patch) | |
| tree | cc21eff76221d4626dd6a2094b5258b2c1018d2c /config/hypr/scripts/Distro_update.sh | |
| parent | 35d04935d154ac2fd685ca3cb57ddfda255db330 (diff) | |
The update scripts were missing `-e` after kitty
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: ../hypr/scripts/Distro_update.sh
modified: ../hypr/scripts/KooLsDotsUpdate.sh
Diffstat (limited to 'config/hypr/scripts/Distro_update.sh')
| -rwxr-xr-x | config/hypr/scripts/Distro_update.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/hypr/scripts/Distro_update.sh b/config/hypr/scripts/Distro_update.sh index 917f303b..164de7ec 100755 --- a/config/hypr/scripts/Distro_update.sh +++ b/config/hypr/scripts/Distro_update.sh @@ -15,23 +15,23 @@ fi if command -v paru &> /dev/null || command -v yay &> /dev/null; then # Arch-based if command -v paru &> /dev/null; then - kitty -T update paru -Syu + kitty -T update -e paru -Syu notify-send -i "$iDIR/ja.png" -u low 'Arch-based system' 'has been updated.' else - kitty -T update yay -Syu + kitty -T update -e yay -Syu notify-send -i "$iDIR/ja.png" -u low 'Arch-based system' 'has been updated.' fi elif command -v dnf &> /dev/null; then # Fedora-based - kitty -T update sudo dnf update --refresh -y + kitty -T update -e sudo dnf update --refresh -y notify-send -i "$iDIR/ja.png" -u low 'Fedora system' 'has been updated.' elif command -v apt &> /dev/null; then # Debian-based (Debian, Ubuntu, etc.) - kitty -T update bash -c "sudo apt update && sudo apt upgrade -y" + kitty -T update -e bash -c "sudo apt update && sudo apt upgrade -y" notify-send -i "$iDIR/ja.png" -u low 'Debian/Ubuntu system' 'has been updated.' elif command -v zypper &> /dev/null; then # openSUSE-based - kitty -T update sudo zypper dup -y + kitty -T update -e sudo zypper dup -y notify-send -i "$iDIR/ja.png" -u low 'openSUSE system' 'has been updated.' else # Unsupported distro |
