


MXLMLGA
Yes, that is nala's output. Well, it's actually a small script to select nala (if installed) or apt to upgrade the system:AVLinux wrote: Tue Feb 11, 2025 3:42 pm... What is that update app? Is that nala? (I've never used it)..
Code: Select all
#!/bin/bash
if : >/dev/tcp/8.8.8.8/53; then
if [ -x /usr/bin/nala ]; then
x-terminal-emulator --hide-menubar --title "Run update" --class=run-update --geometry 108x36 -e /bin/bash -c "sudo nala upgrade ; echo ""; bash "
else
x-terminal-emulator --hide-menubar --title "Run update" --class=run-update --geometry 108x36 -e /bin/bash -c "sudo apt update && sudo apt dist-upgrade ; echo ""; bash "
fi
else echo "Internet appears to be offline...";
notify-send -t 15000 "Internet appears to be offline" -i "/usr/share/icons/Papirus/24x24/panel/network-offline.svg"
fi