#!/bin/sh
if [ -d /proc/acpi/battery ]; then
	results="`find /proc/acpi/battery -mindepth 1 -type d`"
	if [ ! -z "$results" ]; then 
		exec vattery
	fi
fi
