[Pm-utils] [PATCH 2/5] first pass at using run-hooks to get help info.
Victor Lowther
victor.lowther at gmail.com
Sat Mar 1 09:09:19 PST 2008
The output from this will be ugly, if it even works.
---
src/pm-action.in | 23 ++++++++---------------
1 files changed, 8 insertions(+), 15 deletions(-)
diff --git a/src/pm-action.in b/src/pm-action.in
index 3fe476b..457149a 100644
--- a/src/pm-action.in
+++ b/src/pm-action.in
@@ -26,25 +26,21 @@
# The rule here? Simplicity.
+export PM_FUNCTIONS="@PM-UTILS-LIBDIR@/functions"
+. "${PM_FUNCTIONS}"
+
help()
{
echo "${0##*/} [options]"
echo
echo "Options can change how the supend or hibernate is done."
+ echo "pm-utils by itself does not handle any options except --help."
echo
- echo "Possible actions are:"
+ echo "Instead, any options you supply are passed on to the helper"
+ echo "progams that handle the details of power management."
echo
- echo " --quirk-dpms-on"
- echo " --quirk-dpms-suspend"
- echo " --quirk-radeon-off"
- echo " --quirk-reset-brightness"
- echo " --quirk-s3-bios"
- echo " --quirk-s3-mode"
- echo " --quirk-vbe-post"
- echo " --quirk-vbemode-restore"
- echo " --quirk-vbestate-restore"
- echo " --quirk-vga-mode3"
- echo " --quirk-none"
+ echo "Those options are:"
+ run_hooks sleep help
exit 0
}
@@ -75,9 +71,6 @@ do
shift
done
-export PM_FUNCTIONS="@PM-UTILS-LIBDIR@/functions"
-. "${PM_FUNCTIONS}"
-
ACTION="$(echo ${0##*pm-} |tr - _)"
case "$ACTION" in
--
1.5.4.3
More information about the Pm-utils
mailing list