summaryrefslogtreecommitdiff
path: root/sys/man/1/paint
diff options
context:
space:
mode:
authorstanley lieber <stanley.lieber@gmail.com>2011-11-20 20:58:05 -0600
committerstanley lieber <stanley.lieber@gmail.com>2011-11-20 20:58:05 -0600
commit9ab5c2efdbb5b92f2c467ec16b96cd0049b5b8f8 (patch)
treef084af1349eb2067a3e798e6053c91af3f014abc /sys/man/1/paint
parentdc8d51903f27892c54445dd66992e0ebe8c63fca (diff)
add paint(1) man page
Diffstat (limited to 'sys/man/1/paint')
-rw-r--r--sys/man/1/paint36
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/man/1/paint b/sys/man/1/paint
new file mode 100644
index 000000000..c0455e2dc
--- /dev/null
+++ b/sys/man/1/paint
@@ -0,0 +1,36 @@
+.TH PAINT 1
+.CT 1 graphics
+.SH NAME
+paint \- create image files by drawing with a mouse or other pointing device
+.SH SYNOPSIS
+.B paint
+.SH DESCRIPTION
+.I Paint
+provides a window upon which can be drawn lines by moving the cursor while
+holding down mouse button 1 or its equivalent.
+.PP
+A number of keyboard commands are recognized:
+.TP
+.B c
+Clear the screen. Any unsaved work will be lost.
+.TP
+.B s
+Save the current screen as a bitmap image. A pop-up window appears
+suggesting a default filename of
+.I out.bit.
+Hit enter to accept the default, or backspace over the suggested name and
+enter an alternative path and filename. If the path is omitted, the file will be
+created in the current directory.
+.TP
+.B q
+Quit.
+.SH SOURCE
+.B /sys/src/cmd/paint.c
+.SH "SEE ALSO"
+.IR graphics (2),
+.IR image (6)
+.SH BUGS
+.I Paint
+offers the bare minimum of drawing functionality.
+.B Undo
+has not been implemented.