Assorted shell and Python scripts

Remove error check; useless.

Changed files
-10
-10
check-updates
···
#!/usr/bin/env bash
-
if ! sudo dnf check-update >/dev/null; then
-
echo "Error checking for DNF updates"
-
exit 1
-
fi
-
-
if ! flatpak remote-ls --updates >/dev/null; then
-
echo "Error checking for Flatpak updates"
-
exit 1
-
fi
-
DNF_UPDATES=$(sudo dnf check-update | wc -l)
FLATPAK_UPDATES=$(flatpak remote-ls --updates | wc -l)