https://bugs.kde.org/show_bug.cgi?id=432485
--- Comment #5 from loderunner <elzero.bez...@gmail.com> --- problem no longer exists ... works again this the script 'updates' that initiates Discover : #!/bin/sh if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then updates_arch=0 fi if ! updates_aur=$(yay -Qum | wc -l); then updates_aur=0 fi updates=$(("$updates_arch" + "$updates_aur")) if [ "$updates" -gt 0 ]; then echo "# $updates" else echo "" fi -- You are receiving this mail because: You are watching all bug changes.