7 lines
166 B
Bash
7 lines
166 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
GLXINFO="$(glxinfo)"
|
||
|
|
||
|
# xenotic
|
||
|
XENOTIC_FPS=$(xonotic-sdl -benchmark demos/the-big-keybench 2>&1 | grep "one-second fps" | awk '{ printf("%.0f\n",$5) }' )
|