Skip to content

Instantly share code, notes, and snippets.

@MadeOfMagicAndWires
Last active March 27, 2017 20:36
Show Gist options
  • Save MadeOfMagicAndWires/e48284f7fe7776d4eb30ffc113609023 to your computer and use it in GitHub Desktop.
Save MadeOfMagicAndWires/e48284f7fe7776d4eb30ffc113609023 to your computer and use it in GitHub Desktop.
timew stop on shutdown
#!/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