#!/bin/sh
# liqbase: set cpu governor to powersave


# YES, this is a hack, i dunno the right way though :)
# just make sure this is only run on n8x0

 MAEMO_SELECT_MENU=/usr/bin/maemo-select-menu-location
 if [ -f $MAEMO_SELECT_MENU ]
 then
	echo powersave >/sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
 fi
