ambevar-dotfiles/.scripts/winefps

27 lines
601 B
Plaintext
Raw Normal View History

#!/bin/sh
2013-10-23 11:56:42 +02:00
if [ $# -eq 0 ] || [ "$1" = "-h" ]; then
2013-06-25 22:56:10 +02:00
cat<<EOF
Usage: ${0##*/} WIN32EXE PARAMS"
Run Wine application while displaying FPS onscreen.
EOF
exit
fi
if ! command -v osd_cat >/dev/null; then
2013-10-23 11:56:42 +02:00
echo "You need osd_cat."
exit
fi
2013-10-23 11:56:42 +02:00
## The unbuffered option is -u on GNU and OpenBSD, -l on others.
OPT_UNBUF=-l
if [ "$(uname)" = "Linux" ] || [ "$(uname)" = "OpenBSD" ]; then
OPT_UNBUF=-u
fi
WINEDEBUG=fps wine "$@" 2>&1 | tee /dev/stderr | \
2013-10-23 11:56:42 +02:00
sed $OPT_UNBUF -n '/^trace:fps:/{s/.* \([^ ]*\)fps/\1/;p}' | \
osd_cat -l1 -f "-*-*-*-*-*-*-32-*-*-*-*-*-*-*" -O1 -c "yellow"