From: Chris Koeritz Date: Mon, 1 Dec 2025 18:44:50 +0000 (-0500) Subject: cleanups after successful updates X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=9084b0bf53c19829b6e0bd712f390baee7604143;p=feisty_meow.git cleanups after successful updates start xwin screensaver is awesome now! and seek package is very handy. --- diff --git a/scripts/system/seek_package.sh b/scripts/system/seek_package.sh index 3a0743c8..3ee874fb 100644 --- a/scripts/system/seek_package.sh +++ b/scripts/system/seek_package.sh @@ -9,10 +9,6 @@ fi if debian_like; then apt -qq list "$1" 2>/dev/null | grep -q '[installed]' -ret=$? -echo ret from seeking actual is $ret -exit $ret - exit $? fi @@ -23,13 +19,6 @@ if [ ! -z "$rpm_available" ]; then exit $? fi -# yum should never be available if rpm was not! -#yum_available="$(whichable yum)" -#if [ ! -z "$yum_available" ]; then -# yum list | eval $SEEK_PIECE -# exit $? -#fi - echo "Could not deduce what type of OS this is; missing package listing commands." exit 1 diff --git a/scripts/system/start_xwin_screensaver.sh b/scripts/system/start_xwin_screensaver.sh index 1216eabe..4fbfb5c9 100644 --- a/scripts/system/start_xwin_screensaver.sh +++ b/scripts/system/start_xwin_screensaver.sh @@ -18,10 +18,6 @@ fi function check_installed() { bash $FEISTY_MEOW_SCRIPTS/system/seek_package.sh "$1" &>/dev/null -out=$? -echo out is $out on the seek -return $out - return $? }