This file is indexed.

/usr/share/kde4/apps/tagua/themes/pieces/XBoardTTF/theme_jose.lua is in tagua-data 1.0~alpha2-15.

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
13
14
15
16
17
18
19
20
21
22
23
24
import("piece_theme.lua")
shadow           = 7
shadow_color     = "#404050"
shadow_offset_x  = 3
shadow_offset_y  = 3
shadow_grow      = 6

function fromGlyph(glyph)
  return fromFontGlyph("XBoard.ttf", glyph, "black", "white", 6.0)
end

theme.black_bishop = fromGlyph("0x0042")
theme.black_king   = fromGlyph("0x004B")
theme.black_knight = fromGlyph("0x004E")
theme.black_pawn   = fromGlyph("0x0050")
theme.black_queen  = fromGlyph("0x0051")
theme.black_rook   = fromGlyph("0x0052")

theme.white_bishop = fromGlyph("0x0062")
theme.white_king   = fromGlyph("0x006B")
theme.white_knight = fromGlyph("0x006E")
theme.white_pawn   = fromGlyph("0x0070")
theme.white_queen  = fromGlyph("0x0071")
theme.white_rook   = fromGlyph("0x0072")