fkin just work now... please

This commit is contained in:
fabian 2024-04-01 00:17:07 +02:00
parent d8e73040bc
commit 0d7c1902c1

View File

@ -1,20 +0,0 @@
#!/usr/bin/env bash
updateSystem() {
noconfirm=
if [[ $1 == "-y" ]]; then
noconfirm="--assume-yes"
fi
full=
if [[ $2 == "--full" ]]; then
full="full-"
fi
executeAndNotify "doUpdateSystem $noconfirm $full" "system updated" "system update failed";
}
doUpdateSystem() {
sudo apt update;
sudo apt ${2}upgrade $1;
sudo apt autoremove $1;
}