mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Update manpage.
This commit is contained in:
parent
0d87cf12a3
commit
2b340a4762
3 changed files with 34 additions and 14 deletions
|
@ -45,6 +45,7 @@ rofi - A window switcher, run dialog and dmenu replacement
|
||||||
[ -dump-xresources ]
|
[ -dump-xresources ]
|
||||||
[ -auto-select ]
|
[ -auto-select ]
|
||||||
[ -parse-hosts ]
|
[ -parse-hosts ]
|
||||||
|
[ -combi-modi *mode1,mode2* ]
|
||||||
|
|
||||||
## DESCRIPTION
|
## DESCRIPTION
|
||||||
|
|
||||||
|
@ -328,6 +329,16 @@ daemon listening to specific key-combinations.
|
||||||
|
|
||||||
Default: *""*
|
Default: *""*
|
||||||
|
|
||||||
|
### Combi settings
|
||||||
|
|
||||||
|
`-combi-modi` *mode1,mode2*
|
||||||
|
|
||||||
|
The modi to combine in the combi mode.
|
||||||
|
For syntax to see `-modi`.
|
||||||
|
To get one merge view, of window,run,ssh:
|
||||||
|
|
||||||
|
rofi -show combi -combi-mode "window,run,ssh"
|
||||||
|
|
||||||
### History and Sorting
|
### History and Sorting
|
||||||
|
|
||||||
`-disable-history`
|
`-disable-history`
|
||||||
|
|
25
doc/rofi.1
25
doc/rofi.1
|
@ -43,6 +43,7 @@ rofi \- A window switcher, run dialog and dmenu replacement
|
||||||
[ \-dump\-xresources ]
|
[ \-dump\-xresources ]
|
||||||
[ \-auto\-select ]
|
[ \-auto\-select ]
|
||||||
[ \-parse\-hosts ]
|
[ \-parse\-hosts ]
|
||||||
|
[ \-combi\-modi \fImode1,mode2\fP ]
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
.PP
|
.PP
|
||||||
\fBrofi\fP is an X11 popup window switcher, run dialog, dmenu replacement and more. It focusses on
|
\fBrofi\fP is an X11 popup window switcher, run dialog, dmenu replacement and more. It focusses on
|
||||||
|
@ -408,6 +409,18 @@ Default: \fI{terminal} \-e {cmd}\fP
|
||||||
If set, use an external tool to generate list of executable commands. Uses 'run\-command'
|
If set, use an external tool to generate list of executable commands. Uses 'run\-command'
|
||||||
.IP
|
.IP
|
||||||
Default: \fI""\fP
|
Default: \fI""\fP
|
||||||
|
.SS Combi settings
|
||||||
|
.PP
|
||||||
|
\fB\fC\-combi\-modi\fR \fImode1,mode2\fP
|
||||||
|
.PP
|
||||||
|
.RS
|
||||||
|
.nf
|
||||||
|
The modi to combine in the combi mode.
|
||||||
|
For syntax to see `\-modi`.
|
||||||
|
To get one merge view, of window,run,ssh:
|
||||||
|
rofi \-show combi \-combi\-mode "window,run,ssh"
|
||||||
|
.fi
|
||||||
|
.RE
|
||||||
.SS History and Sorting
|
.SS History and Sorting
|
||||||
.PP
|
.PP
|
||||||
\fB\fC\-disable\-history\fR
|
\fB\fC\-disable\-history\fR
|
||||||
|
@ -616,18 +629,14 @@ Check quotes used on the commandline: e.g. used “ instead of ".
|
||||||
.SH WEBSITE
|
.SH WEBSITE
|
||||||
.PP
|
.PP
|
||||||
\fBrofi\fP website can be found at here
|
\fBrofi\fP website can be found at here
|
||||||
.UR https://davedavenport.github.io/rofi/
|
\[la]https://davedavenport.github.io/rofi/\[ra]
|
||||||
.UE
|
|
||||||
.PP
|
.PP
|
||||||
\fBrofi\fP bugtracker can be found here
|
\fBrofi\fP bugtracker can be found here
|
||||||
.UR https://github.com/DaveDavenport/rofi/issues
|
\[la]https://github.com/DaveDavenport/rofi/issues\[ra]
|
||||||
.UE
|
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
.PP
|
.PP
|
||||||
Qball Cow
|
Qball Cow
|
||||||
.MT qball@gmpclient.org
|
\[la]qball@gmpclient.org\[ra]
|
||||||
.ME
|
|
||||||
.PP
|
.PP
|
||||||
Original code based on work by: Sean Pringle
|
Original code based on work by: Sean Pringle
|
||||||
.MT sean.pringle@gmail.com
|
\[la]sean.pringle@gmail.com\[ra]
|
||||||
.ME
|
|
||||||
|
|
|
@ -23,12 +23,12 @@ typedef struct
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
TB_AUTOHEIGHT = 1 << 0,
|
TB_AUTOHEIGHT = 1 << 0,
|
||||||
TB_AUTOWIDTH = 1 << 1,
|
TB_AUTOWIDTH = 1 << 1,
|
||||||
TB_LEFT = 1 << 16,
|
TB_LEFT = 1 << 16,
|
||||||
TB_RIGHT = 1 << 17,
|
TB_RIGHT = 1 << 17,
|
||||||
TB_CENTER = 1 << 18,
|
TB_CENTER = 1 << 18,
|
||||||
TB_EDITABLE = 1 << 19,
|
TB_EDITABLE = 1 << 19,
|
||||||
} TextboxFlags;
|
} TextboxFlags;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue