X-Git-Url: https://code.delx.au/monosys/blobdiff_plain/59185ada1235549e0b345413adc80f8d6648225b..dec9bbdffee0e781fac53cf40409351280838c15:/healthcheck/systemd-user-timers diff --git a/healthcheck/systemd-user-timers b/healthcheck/systemd-user-timers deleted file mode 100755 index e4679e7..0000000 --- a/healthcheck/systemd-user-timers +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -cd ~/.config/systemd/user/ &> /dev/null || exit 0 - -error=0 -for timer in *.timer; do - if ! systemctl --user is-enabled "$timer" > /dev/null; then - echo "disabled timer $timer" - error=1 - fi - if ! systemctl --user is-active "$timer" > /dev/null; then - echo "inactive timer $timer" - error=1 - fi -done - -exit "$error"