#!/bin/sh

# example power management control script - skeleton

# name        : 
# author      : 
# modified    :
# description : 
# requirements: 
# limitations : 
#              
#
# --- end of public part -- don't change below this line ---

# source configuration
. pmcs-config

case "$1" in
  powersave)
    ;;
  custom)
    ;;
  performance)
    ;;
  suspend)
    case "$3" in
      ram)
        ;;
      disk)
        ;;
    esac
    ;;
  resume)
    case "$3" in
      ram)
        ;;
      disk)
        ;;
    esac
    ;;
  cover-open|cover-close|cover)
      case "$3" in
      open)
        ;;
      close)
        ;;
    esac
   ;;
esac

