This file is indexed.

/usr/share/doc/xine-ui/README.xitk/README is in xine-ui 0.99.6-1.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
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
	 Here is a small summary of xitk hidden features ;-)
         ---------------------------------------------------

    - xitk can be slightly tuned for user requirements (read: you can
made small changes). You can change default colors, fonts, and timers.

			       RC file
			       -------
User can add a '.xitkrc' in their home directory or 'xitkrc' in the '.xine' directory,
and system admins can add a 'xitkrc' file in /etc (system wide rc file). 
The first one found will be used, the others will be ignored.

NOTE: colors can be: pixel color value, tripled value or named colors (see widget.c)

Each entries are optional.

--

#
# Small "almost green" example of a xitkrc file.
#

# background color
color.background         = 5582

# color for focused widget
color.focus              = #0e7f4c

# color for selected widget
color.select             = #16f490

# color for black color
color.black 	         = #064c35

# color for white color
color.white              = #00ff8c

# color for warning foregrounds (mainly tips windows)
color.warning_foreground = Blue

# color for warning backgrounds (mainly tips windows)
color.warning_background = #ff0000

# default font (the first attempted).
font.default             = fixed

# fallback font.
font.system              = -adobe-courier-*-*-*-*-12-*-*-*-*-*-*-*

# multibyte usage (default is enabled, on supported platforms)
font.xmb                 = 0;

# speed (in ยต-seconds) between two "slide effect" for label marked
# as animated (depending of skin configuration).
timer.label_animation    = 5000

# time (in m-seconds) between two mouse click 
# assimilated as double click
timer.double_click       = 200

# Enable/disable xshm support (if available): 0/1 (default = 1)
feature.shm              = 1

# Use old title bar style (blueish): 0/1 (default = 0)
feature.old_title_style  = 1

# Check{box/menu} style (can be: round, check or old) (default = check)
feature.check_style      = round

# Use non X cursors (not all ones): 0/1 (default = 0)
feature.cursors          = 1

# Enable/disable menus shortcuts displaying (default = 1)
menus.shortcuts          = 1

--

		     input text widget shortcurts
                     ----------------------------

As i use emacs, input text widget handle emacs-like shortcuts (is someone
want vi-like shortcuts, the patch is welcome ;-) ):

	C-a | C-A: begin of line,
	C-b | C-B: go backward,
	C-c | C-C: cancel,
	C-d | C-D: delete one char from the right cursor position,
	C-e | C-E: end of line,
	C-f | C-F: go forward,
	C-k | C-K: kill line from cursor,
	C-m | C-M: return,
	C-t | C-T: transpose chars,
	C-?      : erase one char from the left cursor position.

	other key actions:
	Del                :delete one char from the right cursor position,
	Backspace          : erase one char from the left cursor position,
	Left/Right arrows  : self explaning ;-),
	Home               : begin of line,
	End                : end of line,
	Return/Keypad enter: return,
	Esc/Tab            : cancel.

--