#!/bin/bash

cd $REPERTOIRE/tmp/
FILE="fps_mulx.txt" 
MINFPS=100 
if [ -e $REPERTOIRE/plugins/Benchmarks/glx/glxmulx ]
then
	rm -f $FILE
	$REPERTOIRE/plugins/Benchmarks/glx/glxmulx 	
        FPS=`cat $FILE`
	rm $FILE -f
	FPS=${FPS:2}
	POL_SetupWindow_message "You have $FPS FPS" "Benchmarks" 
fi
