#!/bin/bash

# example power management control script - skeleton

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

PATH=/bin:/sbin:/usr/bin:/usr/sbin

# source configuration
. config

case "$1" in
  powersave)
    ;;
  custom)
    ;;
  performance)
    ;;
  sleep)
    ;;
  wakeup)
    ;;
esac

exit 0
