This file is indexed.

/usr/share/doc/tkabber-plugins/README.stripes is in tkabber-plugins 0.11.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
$Id: README 1513 2008-10-15 17:39:41Z sergei $

"Stripes" -- chat plugin for Tkabber.


I. The Idea

This plugin allows to colorize backgrounds of the whole
messages placed in the conversation logs of Tkabber chat
windows. Backgrounds of even and odd messages can be
configured separately from each other (or not configured
at all).


II. Usage

The colors of even and odd messages can be manipulated using the
Tk option database resources which are:

* Chat.oddBackground for odd messages.

* Chat.evenBackground for even messages.

When the particular resource is not defined, it's not used thus
not affecting the appearance of the corresponding messages.

By default these resources are not defined.

The color may be specified in any form accepted by Tk which mean
any named color (from the X server's color database on
systems using X Window or listed in [1] on other systems) or the
color specification such as #RRGGBB.
For the strict explanation or color specifications read [2].


III. Examples

1) To set up gray colors using the Tkabber configuration file
   add these lines to your config.tcl file:

# Colors for the stripes plugin:
option add *Chat.oddBackground  gray77
option add *Chat.evenBackground gray84

2) To do the same using XRDB (systems based on X Window):

! Colors for the stripes plugin:
Tkabber*Chat.oddBackground:  AntiqueWhite
Tkabber*Chat.evenBackground: bisque


IV. Bugs and limitations

* Changing any color resource at runtime won't affect already
  opened chat windows.


V. References

1. http://www.tcl.tk/man/tcl8.5/TkCmd/colors.htm
2. http://www.tcl.tk/man/tcl8.5/TkLib/GetColor.htm


# vim:tw=64:noet