ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/root-tail/root-tail.man
Revision: 1.7
Committed: Sat Mar 27 21:17:50 2004 UTC (20 years, 1 month ago) by pcg
Content type: application/x-troff-man
Branch: MAIN
Changes since 1.6: +46 -46 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 .TH ROOTTAIL 1 "2004-03-27" "Version 1.0"
2 .UC 5
3 .SH NAME
4 root-tail \- print text directly to X11 root window
5 .SH SYNOPSIS
6 .B root-tail
7 .RB [ \-g \|| --geometry
8 .IR GEOMETRY ]
9 .RB [ \-fn \|| --font
10 .IR FONTSPEC ]
11 .RB [ \--color
12 .IR color ]
13 .RB [ \--reload
14 .IR SEC
15 .IR COMMAND ]
16 .RB [ \--shade ]
17 .RB [ \--outline ]
18 .RB [ \--noflicker ]
19 .RB [ \-f \|| \--fork ]
20 .RB [ \--reverse ]
21 .RB [ \--whole ]
22 .RB [ \--partial ]
23 .RB [ \--update ]
24 .RB [ \--cont
25 .IR STRING ]
26 .RB [ \--noinitial ]
27 .RB [ \--frame ]
28 .RB [ \-id ID ]
29 .RB [ \-i \|| \--interval
30 .IR SECONDS ]
31 .RB [ \-V ]
32 file1[,color[,desc]]
33 [file2[,color[,desc]]]
34 .\" Die Beschreibung
35 .SH DESCRIPTION
36 Displays a given file anywhere on your X11 root window with a transparent
37 background. It was made because I'm very lazy and this was easier than
38 making a new rxvt pixmap each time I changed my background to simulate
39 that transparent effect. A null desc (example: "/var/log/messages,red,")
40 will prevent the printing of a description and the []'s.
41 .PP
42 .SS General Options
43 .TP
44 .BI \--color " COLOR"
45 Use color $color as default.
46 .TP
47 .BI "\--font \|| -fn" " FONTSPEC"
48 Use font FONTSPEC. This can be either fixed withn fonts like -fn
49 fixed or any font using -fn '-*-*-*-*-*-*-*-*-*-*-*-*-*-*' with the
50 appropriate fields filled out (see xfontsel).
51 .TP
52 .B -f \|| \--fork
53 Forks to the background and gives the pid of itself (useful if rt is
54 being called from a script or frontend)
55 .TP
56 .B \--reverse
57 Display the files in reverse order, with the newest lines at the top.
58 .TP
59 .B \--whole
60 Only display whole lines. If the last line of a file doesn't yet end
61 with a newline character then wait until it does before displaying
62 it. This is the default if more than one file is being displayed.
63 .TP
64 .B \--partial
65 This is the opposite of the --whole option (see above). It displays
66 lines even if they don't yet have a newline at the end. This is the
67 default if only one file is being displayed.
68 .TP
69 .B \--update
70 Update partial lines 'in place' if they are still on the screen when
71 they are updated in their files. Using --update automatically turns on
72 --partial.
73 .TP
74 .BI \--cont " STRING"
75 CURRENTLY BROKEN. When partial lines are broken into two lines in the
76 display, prefix the 2nd line with STRING. Defaults to "[+]". Specify the
77 "--whole" argument to ensure partial lines are never displayed, or specify
78 "--update" to attempt to "repair" broken lines in-place.
79 .TP
80 .BI \--reload " SEC COMMAND"
81 Re-display the file(s) and run COMMAND every SEC seconds. The
82 default is to never re-display the file(s).
83 .TP
84 .B \--shade
85 Add black shading to the font.
86 .TP
87 .B \--outline
88 Add black outline to the font (making redraws quite a bit slower).
89 .TP
90 .B \--noflicker
91 Use slower but flicker-free update.
92 .TP
93 .B \--noinitial
94 Don't display the end of the file(s) initially.
95 .TP
96 .BI "\-id" " ID"
97 Use the given window ID for output instead of the root window.
98 .TP
99 .BI "\-i \|| \--interval" " SECONDS"
100 Use the specified sleeping interval between checks instead of the
101 default 2.4 seconds. Fractional values are OK.
102 .TP
103 .B \-V
104 Print version information.
105 .TP
106 .B \--frame
107 Surround the selected area with a frame. This is just a debugging tool
108 and doesn't always work properly. Use it to find the perfect geometry.
109 .IP
110 .SH EXAMPLE
111 .PP
112 root-tail -g 80x25+100+50 /var/log/messages,green /var/log/secure,red,'ALERT'
113 .SH BUGS
114 .PP
115 \- width must be larger than the longest file-header, otherwise segfaults.
116 .PP
117 Should you happen to find any bugs please fix them and send me a diff.
118 .PP
119 NOTE: This program was modified by Marc Lehmann <pcg@goof.com>, who
120 couldn't reach the original author. Please direct bug-reports etc. to
121 pcg@goof.com.
122 .PP
123 http://root-tail.plan9.de/