aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sketch <sketchn98@gmail.com>2021-03-08 10:22:13 +1300
committerMichael Homer <mwh@mwh.geek.nz>2021-03-08 10:23:16 +1300
commitf8b121b41b69f780a3e59c085430105a759dedd3 (patch)
treedd349691405595630ad1699dd9cb7bc33209c4e3
parentShow thumbnails for images supported by GTK (diff)
downloaddragon-f8b121b41b69f780a3e59c085430105a759dedd3.tar.gz
dragon-f8b121b41b69f780a3e59c085430105a759dedd3.tar.bz2
dragon-f8b121b41b69f780a3e59c085430105a759dedd3.zip
Add man page
The man page replicates what is now in the --help output.
-rw-r--r--dragon.160
1 files changed, 60 insertions, 0 deletions
diff --git a/dragon.1 b/dragon.1
new file mode 100644
index 0000000..fbd03d8
--- /dev/null
+++ b/dragon.1
@@ -0,0 +1,60 @@
+.TH DRAGON 1
+.SH NAME
+dragon \- lightweight DnD source/target
+.SH SYNOPSIS
+.B dragon
+.OP -x
+.OP -t
+.OP -k
+.OP -p
+.OP -a
+.OP -i
+.OP -T
+.OP -v
+FILENAME
+.PP
+.B dragon
+.OP --help
+.PP
+.B dragon
+.OP --version
+.SH DESCRIPTION
+.B dragon
+is a source/sink for drag-and-drop operations. Many programs, particularly
+web applications, expect files to be dragged into them now. If you don't
+habitually use a file manager that is a problem. Dragon creates a small window
+to drag out or drop files into, instead.
+.SH OPTIONS
+.TP
+.B -x --and-exit
+exit after a single completed drop.
+.TP
+.B -t --target
+act as a target instead of source.
+.TP
+.B -k --keep
+with --target, keep files to drag out.
+.TP
+.B -p --print-path
+with --target, print file paths instead of URIs.
+.TP
+.B -a --all
+drag all files at once.
+.TP
+.B -i --icon-only
+only show icons in drag-and-drop windows.
+.TP
+.B -I --stdin
+read filenames from stdin.
+.TP
+.B -T --on-top
+make window always-on-top.
+.TP
+.B -v --verbose
+be verbose.
+.TP
+.B --help
+show help.
+.TP
+.B --version
+show version details.
bgstack15