/usr/share/xcircuit/pixmaps/solid.xbm is in xcircuit 3.7.57.dfsg-1.
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 25 26 | /* Definition of a solid square the size of the other toolbar pixmaps. */
/* This is used for drawing the "color" image on the color tool button */
#define solid_width 20
#define solid_height 20
static char solid_bits[] = {
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f,
0xff, 0xff, 0x0f};
|