summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Lowther <victor.lowther@gmail.com>2008-09-09 21:13:49 -0500
committerVictor Lowther <victor.lowther@gmail.com>2008-09-09 21:13:49 -0500
commit8a46966d6ea9329fba27f9eb3bfeaf298a419b36 (patch)
tree544d425607d448ca510b681cd9b800daf72cb32a
parent9197b4173c308bcdcc9b5f8a4f8b95146e634833 (diff)
Add help to 00auto-quirk
Also fix a silly typo
-rwxr-xr-xpm/sleep.d/00auto-quirk11
1 files changed, 10 insertions, 1 deletions
diff --git a/pm/sleep.d/00auto-quirk b/pm/sleep.d/00auto-quirk
index 3514869..66440ac 100755
--- a/pm/sleep.d/00auto-quirk
+++ b/pm/sleep.d/00auto-quirk
@@ -19,8 +19,17 @@ mabye_add_quirks()
done
}
+help()
+{
+ echo
+ echo "Auto quirk handler option:"
+ echo
+ echo "--auto-quirks"
+}
+
case $1 in
suspend|hibernate) mabye_add_quirks ;;
- *) exit $NA
+ help) help ;;
+ *) exit $NA ;;
esac