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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
.TH NOTION 1
.SH NAME
Notion - an X11 window manager
.SH SYNOPSIS
.B notion
.I "[options]"
.SH "DESCRIPTION"
Notion is a tiling tabbed window manager designed with keyboard users in mind.
.SH "OPTIONS"
.TP
.B \-display host:display.screen
X display to manage
.TP
.B \-conffile configfile
Configuration file to use instead of default
.TP
.B \-searchdir dir
Directory to search for configuration files and other scripts
.TP
.B \-oneroot
On X servers with multiple (traditional non-Xinerama) screens, manage only
default screen (root window), not all, as given by the \-display option or
in the DISPLAY environment variable.
.TP
.B \-session session_name
Set session name. This option affects where workspace and other save files are
put (~/.notion/session_name if option set).
.TP
.B \-help
Show help on command line options
.TP
.B \-version
Show version
.TP
.B \-about
Show about text (version, author, license)
.SH BASIC CONCEPTS
This section is an overview of the types objects that appear on an X
display managed by Notion and their relationships in a standard setup. This
information is necessary to understand the operations and availability
of the different key bindings explained below. For a more detailed
explanation, needed for writing custom bindings configuration files,
see the additional documentation available from the Notion Web page.
The top-level objects that matter in the case at hand are \fBscreens\fP.
They correspond to physical screens. Screens contain \fBworkspaces\fP
(which are a kind of \fBgroup\fP), and \fBclient windows\fP put into full
screen mode. These objects are \fBmultiplexed\fP in the sense that only
one can be displayed at a time.
Workspaces themselves may contain \fBtilings\fP and detached/floating
\fBframes\fP. A workspace containing no tilings and only detached/floating
windows is also called a \fBfloating workspace\fP. Tilings themselves contain
\fBframes\fP tiled to fill the screen, and possibly a statusbar or dock. Akin
to screens, frames multiplex other objects, but in this case mostly client
window \fBgroups\fP. Most of the time, frames are the only trace of Notion
you see on the screen. Frames may have border decorations, and they have a
\fBtab\fP for each multiplexed object.
\fBQueries\fP are boxes that appear at the bottoms of frames or screens
to ask you for textual input to execute an action that depends on it.
Most queries support tab-completion.
.SH BINDINGS
These are the default key and pointer bindings. Below, \fBMod4\fP refers to the
modifier used by Notion. \fBMod4\fP is the default, but this can be configured
by setting \fBMETA\fP in the configuration. The particular key that is
interpreted as \fBMod4\fP depends on your system. On Xorg-based systems it is
usually bound to the \fBwindows\fP key. The \fIxmodmap(1x)\fP tool can be used
to get/set which key codes correspond to which modifiers, and the \fIxev(1x)\fP
tool can be used to see what codes are generated by particular keys.
The string in square brackets after a binding group heading below indicates
the module that whose configuration file defines these bindings.
.SS Globally available bindings
BINDINGS:WScreen
.SS Bindings operating on all frames and screens
BINDINGS:WMPlex
.SS Bindings operating on all frames
BINDINGS:WFrame
.SS Bindings operating on top-level (non-transient) frames and screens
BINDINGS:WMPlex.toplevel
.SS Bindings operating on top-level (non-transient) frames
BINDINGS:WFrame.toplevel
.SS Bindings for floating/detached frames
BINDINGS:WFrame.floating
.SS Bindings for tilings and tiled frames [mod_tiling]
BINDINGS:WTiling
.\" BINDINGS:WFrame.tiled
.SS Bindings for client windows
BINDINGS:WClientWin
BINDINGS:WGroupCW
.SS Move/resize mode bindings
BINDINGS:WMoveresMode
.SS Bindings for message boxes and queries [mod_query]
BINDINGS:WInput
.SS Bindings for editing in queries [mod_query]
These bindings are similar to those of the \fIjoe(1)\fP text editor.
Cut, copy and paste works in a more conventional manner, though, but
the keys are equivalent.
BINDINGS:WEdln
.SS Bindings for menus [mod_menu]
BINDINGS:WMenu
.SH FILES AND DIRECTORIES
.TP
.B ETCDIR/cfg_notion.lua
System default main configuration files
.TP
.B ETCDIR/cfg_*.lua
Other configuration files.
.TP
.B ETCDIR/look_*.lua
Colour scheme configuration files
.TP
.B ~/.notion/
User configuration files
.TP
.B ~/.notion/cfg_notion.lua
User default main configuration file (overrides system default)
.SH SEE ALSO
The Notion home page, \fIhttps://notionwm.net/\fP
.PP
The document "Configuring and extending Notion with Lua" found on the
Notion home page.
.PP
.I DOCDIR/
.PP
\fIX(7x)\fP, \fInotionflux(1)\fP, \fIjoe(1)\fP
.SH AUTHOR
Notion was written by the Notion team, based on Ion which was written by Tuomo Valkonen <tuomov at iki.fi>.
|