7 lines
166 B
Bash
Executable File
7 lines
166 B
Bash
Executable File
#!/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) }' )
|