/usr/share/games/bouncy/fonts.py is in bouncy 0.6.20071104-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | import pyglyph
# load up fonts
fonts = pyglyph.font.LocalFontFactory('/usr/share/fonts/truetype/ttf-dejavu')
sans20 = fonts.get_font(family='DejaVu sans',
size=20, bold=False, italic=False)
sans40 = fonts.get_font(family='DejaVu sans',
size=40, bold=False, italic=False)
mono20 = fonts.get_font(family='DejaVu sans mono',
size=20, bold=False, italic=False)
|