#!/bin/sh
#
# By Kendall Weaver
#
# Simple graphical battery checking tool. Made 
# for Fluxbox but will probably work anywhere.

b=$(acpi)

zenity --info --text "$b"

exit 0
