/usr/share/games/madbomber/images/make-offs.sh is in madbomber-data 0.2.5-5.
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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/bin/sh
echo "Creating '-off' bitmaps..."
for i in \
title/one-player \
title/two-players \
title/two-player-vs \
title/options \
title/highscore \
title/exit \
options/normal \
options/zen \
options/hard \
options/0percent \
options/25percent \
options/50percent \
options/75percent \
options/100percent \
options/ok
do
echo $i
pngtopnm $i.png | ppmbrighten -value -50 | ppmquant 256 | ppmtopng > \
$i-off.png
done
echo "All done - I'd pngcrush them if I were you..."
echo
|