add official arch linux repo updatecheck to script for updates customModules (#254)

* Update checkUpdates.sh

add official repo update check

* Update checkUpdates.sh

separate pacman, aur and total updates check

* Update scripts/checkUpdates.sh

Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>

* Update scripts/checkUpdates.sh

Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>

---------

Co-authored-by: Jas Singh <jaskiratpal.singh@outlook.com>
This commit is contained in:
TheyCallMeSecond
2024-09-15 04:02:54 +03:30
committed by GitHub
parent 2c72cc66d8
commit b9b2ea018c

View File

@@ -1,8 +1,21 @@
#!/bin/bash
check_arch_updates() {
result=$(yay -Qum --noconfirm 2>/dev/null | wc -l || echo 0)
echo "$result"
official_updates=0
aur_updates=0
if [ "$1" = "-y" ]; then
aur_updates=$(yay -Qum 2>/dev/null | wc -l)
elif [ "$1" = "-p" ]; then
official_updates=$(checkupdates 2>/dev/null | wc -l)
else
official_updates=$(checkupdates 2>/dev/null | wc -l)
aur_updates=$(yay -Qum 2>/dev/null | wc -l)
fi
total_updates=$((official_updates + aur_updates))
echo $total_updates
}
check_ubuntu_updates() {
@@ -17,7 +30,7 @@ check_fedora_updates() {
case "$1" in
-arch)
check_arch_updates
check_arch_updates "$2"
;;
-ubuntu)
check_ubuntu_updates