/usr/share/xball/run_demos is in xball 3.0.1-1.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh
echo '*** Xball Demos ***'
echo "Hit 'q' in the xball window to exit a demo early"
echo ""
for f in demo1 demo2 demo3 demo4 demo5 demo6 demo7 demo8 demo9 demo10 demo11 \
demo12 demo13 demo14
do
echo "Running demo: $f"
xball -demo $f
sleep 1 # Let X catch up with events...
done
|