Last active
March 27, 2017 20:36
-
-
Save MadeOfMagicAndWires/e48284f7fe7776d4eb30ffc113609023 to your computer and use it in GitHub Desktop.
timew stop on shutdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# /usr/lib/systemd/system-shutdown/timew.shutdown | |
# Script to stop timew timers when the machine shuts down. | |
timew stop > /dev/null 2>&1 | |
if [[ $? == 0 ]]; then | |
echo "Stopped timers." | |
fi | |
# vim: ts=2 sw=2 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment