#!/bin/bash
cd $REPERTOIRE/tmp/
FILE="fps_gears.txt" 
MINFPS=100 
if [ -e $REPERTOIRE/plugins/Benchmarks/glx/gears ]
then
	rm -f $FILE
	$REPERTOIRE/plugins/Benchmarks/glx/gears
        FPS=`cat $FILE`
	POL_SetupWindow_message "You have $FPS FPS" "Benchmarks" 
	rm $FILE -f
fi
