mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
[Doc] Add manpage documentation for pango font string.
This commit is contained in:
parent
5b892ce86e
commit
f70b0ed3fd
2 changed files with 95 additions and 0 deletions
|
@ -2164,6 +2164,59 @@ FontAwesome 22
|
||||||
.fi
|
.fi
|
||||||
.RE
|
.RE
|
||||||
|
|
||||||
|
.PP
|
||||||
|
From the pango manpage:
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The string must have the form
|
||||||
|
|
||||||
|
.PP
|
||||||
|
\fB\fC\\[FAMILY-LIST] \\[STYLE-OPTIONS] \\[SIZE] \\[VARIATIONS]\fR,
|
||||||
|
|
||||||
|
.PP
|
||||||
|
where FAMILY-LIST is a comma-separated list of families optionally terminated
|
||||||
|
by a comma, STYLE_OPTIONS is a whitespace-separated list of words where each
|
||||||
|
word describes one of style, variant, weight, stretch, or gravity, and SIZE is
|
||||||
|
a decimal number (size in points) or optionally followed by the unit modifier
|
||||||
|
“px” for absolute size. VARIATIONS is a comma-separated list of font variation
|
||||||
|
specifications of the form “\fB\fCaxis\fR=value” (the = sign is optional).
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The following words are understood as styles: "Normal”, “Roman”, “Oblique”,
|
||||||
|
“Italic”.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The following words are understood as variants: “Small-Caps”, “All-Small-Caps”,
|
||||||
|
“Petite-Caps”, “All-Petite-Caps”, “Unicase”, “Title-Caps”.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The following words are understood as weights: “Thin”, “Ultra-Light”,
|
||||||
|
“Extra-Light”, “Light”, “Semi-Light”, “Demi-Light”, “Book”, “Regular”,
|
||||||
|
“Medium”, “Semi-Bold”, “Demi-Bold”, “Bold”, “Ultra-Bold”, “Extra-Bold”,
|
||||||
|
“Heavy”, “Black”, “Ultra-Black”, “Extra-Black”.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The following words are understood as stretch values: “Ultra-Condensed”,
|
||||||
|
“Extra-Condensed”, “Condensed”, “Semi-Condensed”, “Semi-Expanded”, “Expanded”,
|
||||||
|
“Extra-Expanded”, “Ultra-Expanded”.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
The following words are understood as gravity values: “Not-Rotated”, “South”,
|
||||||
|
“Upside-Down”, “North”, “Rotated-Left”, “East”, “Rotated-Right”, “West”.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
Any one of the options may be absent. If FAMILY-LIST is absent, then the
|
||||||
|
family_name field of the resulting font description will be initialized to
|
||||||
|
NULL. If STYLE-OPTIONS is missing, then all style options will be set to the
|
||||||
|
default values. If SIZE is missing, the size in the resulting font description
|
||||||
|
will be set to 0.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
A typical example:
|
||||||
|
|
||||||
|
.PP
|
||||||
|
"Cantarell Italic Light 15 `wght`=200"
|
||||||
|
|
||||||
.SH Icon Handling
|
.SH Icon Handling
|
||||||
.PP
|
.PP
|
||||||
Rofi supports 3 ways of specifying an icon:
|
Rofi supports 3 ways of specifying an icon:
|
||||||
|
|
|
@ -1378,6 +1378,48 @@ Or
|
||||||
FontAwesome 22
|
FontAwesome 22
|
||||||
```
|
```
|
||||||
|
|
||||||
|
From the pango manpage:
|
||||||
|
|
||||||
|
The string must have the form
|
||||||
|
|
||||||
|
`\[FAMILY-LIST] \[STYLE-OPTIONS] \[SIZE] \[VARIATIONS]`,
|
||||||
|
|
||||||
|
where FAMILY-LIST is a comma-separated list of families optionally terminated
|
||||||
|
by a comma, STYLE\_OPTIONS is a whitespace-separated list of words where each
|
||||||
|
word describes one of style, variant, weight, stretch, or gravity, and SIZE is
|
||||||
|
a decimal number (size in points) or optionally followed by the unit modifier
|
||||||
|
“px” for absolute size. VARIATIONS is a comma-separated list of font variation
|
||||||
|
specifications of the form “`axis`=value” (the = sign is optional).
|
||||||
|
|
||||||
|
The following words are understood as styles: "Normal”, “Roman”, “Oblique”,
|
||||||
|
“Italic”.
|
||||||
|
|
||||||
|
The following words are understood as variants: “Small-Caps”, “All-Small-Caps”,
|
||||||
|
“Petite-Caps”, “All-Petite-Caps”, “Unicase”, “Title-Caps”.
|
||||||
|
|
||||||
|
The following words are understood as weights: “Thin”, “Ultra-Light”,
|
||||||
|
“Extra-Light”, “Light”, “Semi-Light”, “Demi-Light”, “Book”, “Regular”,
|
||||||
|
“Medium”, “Semi-Bold”, “Demi-Bold”, “Bold”, “Ultra-Bold”, “Extra-Bold”,
|
||||||
|
“Heavy”, “Black”, “Ultra-Black”, “Extra-Black”.
|
||||||
|
|
||||||
|
The following words are understood as stretch values: “Ultra-Condensed”,
|
||||||
|
“Extra-Condensed”, “Condensed”, “Semi-Condensed”, “Semi-Expanded”, “Expanded”,
|
||||||
|
“Extra-Expanded”, “Ultra-Expanded”.
|
||||||
|
|
||||||
|
The following words are understood as gravity values: “Not-Rotated”, “South”,
|
||||||
|
“Upside-Down”, “North”, “Rotated-Left”, “East”, “Rotated-Right”, “West”.
|
||||||
|
|
||||||
|
Any one of the options may be absent. If FAMILY-LIST is absent, then the
|
||||||
|
family\_name field of the resulting font description will be initialized to
|
||||||
|
NULL. If STYLE-OPTIONS is missing, then all style options will be set to the
|
||||||
|
default values. If SIZE is missing, the size in the resulting font description
|
||||||
|
will be set to 0.
|
||||||
|
|
||||||
|
A typical example:
|
||||||
|
|
||||||
|
"Cantarell Italic Light 15 \`wght`=200"
|
||||||
|
|
||||||
|
|
||||||
## Icon Handling
|
## Icon Handling
|
||||||
|
|
||||||
Rofi supports 3 ways of specifying an icon:
|
Rofi supports 3 ways of specifying an icon:
|
||||||
|
|
Loading…
Reference in a new issue