2022-10-22 05:03:11 -04:00
.nh
.TH ROFI-THEME 5 rofi-theme
2020-02-02 11:21:21 -05:00
.SH NAME
.PP
2022-10-22 05:03:11 -04:00
\fB rofi-theme\fP - Rofi theme format files
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SH Getting started with theming
2022-04-06 14:23:07 -04:00
.PP
The easiest way to get started theming rofi is by modifying your existing theme.
2022-04-07 15:02:55 -04:00
.PP
2023-03-27 12:45:44 -04:00
Themes can be modified/tweaked by adding theming elements to the end of the\\
2022-10-22 05:03:11 -04:00
config file. The default location of this file is \fB \fC ~/.config/rofi/config.rasi\fR ,
2022-04-06 14:23:07 -04:00
if the file does not exists, you can create it.
.PP
2022-04-07 15:02:55 -04:00
A basic config:
.PP
.RS
.nf
configuration {
modes: [ combi ];
2022-10-22 05:03:11 -04:00
combi-modes: [ window, drun, run ];
2022-04-07 15:02:55 -04:00
}
2022-10-22 05:03:11 -04:00
@theme "gruvbox-light"
2022-04-07 15:02:55 -04:00
/* Insert theme modifications after this */
.fi
.RE
.PP
For example if we want to change the \fB \fC Type to filter\fR text in the entry box we
append the following:
2022-04-06 14:23:07 -04:00
.PP
.RS
.nf
entry {
placeholder: "Type here";
}
.fi
.RE
.PP
2022-04-07 15:02:55 -04:00
In the above section, \fB \fC entry\fR indicates the widget, \fB \fC placeholder\fR is the
2023-03-27 12:45:44 -04:00
property we want to modify and we set it to the string \fB \fC "Type here"\fR \& . To find
the commonly available widgets in rofi, see the 'Basic structure' section.
2022-04-06 14:23:07 -04:00
.PP
To change the mouse over cursor to a pointer, add:
.PP
.RS
.nf
entry {
placeholder: "Type here";
cursor: pointer;
}
.fi
.RE
.PP
For the next modification, we want to add the icon after each text element and
increase the size. First we start by modifying the \fB \fC element\fR widget:
.PP
.RS
.nf
element {
orientation: horizontal;
2022-10-22 05:03:11 -04:00
children: [ element-text, element-icon ];
2022-04-06 14:23:07 -04:00
spacing: 5px;
}
.fi
.RE
.PP
Resulting in the following packing:
.PP
.RS
.nf
┌─────────────────────────────────────────────────────────────────────┐
│ element │
│ ┌─────────────────────────────────────────────┐ ┌─────────────────┐ │
│ │element─text │ │ element─icon │ │
│ └─────────────────────────────────────────────┘ └─────────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
.fi
.RE
.PP
2022-04-07 15:02:55 -04:00
The \fB \fC element\fR (container) widget hold each entry in the \fB \fC listview\fR , we add the
2022-10-22 05:03:11 -04:00
two pre-defined children in the order we want to show. We also specify the
2022-04-07 15:02:55 -04:00
packing direction (\fB \fC orientation\fR ) and the spacing between the children
(\fB \fC spacing\fR ). We specify the space between the two children in absolute pixels
(\fB \fC px\fR ).
2022-04-06 14:23:07 -04:00
.PP
2022-10-22 05:03:11 -04:00
To increase the icon-size, we need to modify the \fB \fC element-icon\fR widget.
2022-04-06 14:23:07 -04:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
element-icon {
2022-04-06 14:23:07 -04:00
size: 2.5em;
}
.fi
.RE
.PP
.RS
.nf
┌─────────────────────────────────────────────────────────────────────┐
│ element │
│ ┌─────────────────────────────────────────────┐ ┌─────────────────┐ │
│ │element─text │ │ element │ │
│ │ │ │ ─ │ │
│ │ │ │ icon │ │
│ └─────────────────────────────────────────────┘ └─────────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
.fi
.RE
.PP
In this example we specify the size in the em
\[ la]https://www.w3.org/Style/LieBos3e/em\[ ra] unit.
.PP
2023-03-27 12:45:44 -04:00
Now lets change the text color of both the \fB \fC entry\fR and the \fB \fC element-text\fR
widget to red and background to blue.
2022-04-06 14:23:07 -04:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
entry, element-text {
text-color: red;
background-color: rgb(0,0,255);
2022-04-06 14:23:07 -04:00
}
.fi
.RE
.PP
2022-10-22 05:03:11 -04:00
Here we use two different methods of writing down the color, for \fB \fC text-color\fR
we used a named color, for \fB \fC background-color\fR we specify it in \fB \fC rgb\fR \& .
2022-04-06 14:23:07 -04:00
We also specify the property for multiple widgets by passing a comma separated
list of widget names.
.PP
If you want to center the text relative to the icon, we can set this:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
element-text {
vertical-align: 0.5;
2022-04-06 14:23:07 -04:00
}
.fi
.RE
.PP
.RS
.nf
┌─────────────────────────────────────────────────────────────────────┐
│ element │
│ ┌─────────────────────────────────────────────┐ ┌─────────────────┐ │
│ │ │ │ element │ │
2022-10-22 05:03:11 -04:00
│ │element-text │ │ ─ │ │
2022-04-06 14:23:07 -04:00
│ │ │ │ icon │ │
│ └─────────────────────────────────────────────┘ └─────────────────┘ │
└─────────────────────────────────────────────────────────────────────┘
.fi
.RE
2022-11-25 04:28:34 -05:00
.PP
We can also specify the color and width of the cursor. You could, for example,
create a crimson block cursor like this:
.PP
.RS
.nf
entry {
cursor-color: rgb(220,20,60);
cursor-width: 8px;
}
.fi
.RE
.PP
2023-03-27 12:45:44 -04:00
By default, the \fB \fC cursor-color\fR will be the same as the \fB \fC text-color\fR \& . The
\fB \fC cursor-width\fR will always default to 2 pixels.
2022-11-25 04:28:34 -05:00
2022-04-06 14:23:07 -04:00
.PP
If you want to see the complete theme, including the modification you can run:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
rofi -dump-theme
2022-04-06 14:23:07 -04:00
.fi
.RE
2022-12-31 07:15:01 -05:00
.SH Default theme loading
2021-09-12 13:59:36 -04:00
.PP
By default, rofi loads the default theme. This theme is \fB always\fP loaded.
2022-04-06 14:23:07 -04:00
The default configuration contains:
2021-09-12 13:59:36 -04:00
.PP
.RS
.nf
@theme "default"
.fi
.RE
.PP
2022-04-06 14:23:07 -04:00
To unload the default theme, and load another theme, add the \fB \fC @theme\fR statement
to your \fB \fC config.rasi\fR file.
2021-09-12 13:59:36 -04:00
.PP
2022-04-06 14:23:07 -04:00
If you have a theme loaded via \fB \fC @theme\fR or use the default theme, you can tweak
2021-09-12 13:59:36 -04:00
it by adding overriding elements at the end of your \fB \fC config.rasi\fR file.
.PP
For the difference between \fB \fC @import\fR and \fB \fC @theme\fR see the \fB \fC Multiple file
handling\fR section in this manpage.
.PP
To see the default theme, run the following command:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
rofi -no-config -dump-theme
2021-09-12 13:59:36 -04:00
.fi
.RE
2022-12-31 07:15:01 -05:00
.SH Description
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
The need for a new theme format was motivated by the fact that the way rofi
handled widgets has changed. From a very static drawing of lines and text to a
nice structured form of packing widgets. This change made it possible to
provide a more flexible theme framework. The old theme format and config file
are not flexible enough to expose these options in a user-friendly way.
Therefore, a new file format has been created, replacing the old one.
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SH Format specification
2020-02-02 11:21:21 -05:00
.SH Encoding
.PP
2023-03-27 12:45:44 -04:00
The encoding of the file is UTF-8. Both unix (\fB \fC \\ n\fR ) and windows (\fB \fC \\ r\\ n\fR )
newlines format are supported. But unix is preferred.
2020-02-02 11:21:21 -05:00
.SH Comments
.PP
C and C++ file comments are supported.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
Anything after \fB \fC //\fR and before a newline is considered a comment.
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Everything between \fB \fC /*\fR and \fB \fC */\fR is a comment, this comment can span
multiple lines.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Comments can be nested and the C comments can be inline.
.PP
2017-04-03 11:39:09 -04:00
The following is valid:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
// Magic comment.
2020-01-02 06:00:44 -05:00
property: /* comment */ value;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-08-13 14:31:46 -04:00
However, this is not:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
prop/*comment*/erty: value;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.SH White space
.PP
White space and newlines, like comments, are ignored by the parser.
.PP
2017-04-03 11:39:09 -04:00
This:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
property: name;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-04-03 11:39:09 -04:00
Is identical to:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-04-03 11:39:09 -04:00
property :
name
;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.SH File extension
.PP
The preferred file extension for the new theme format is \fB rasi\fP \& . This is an
2023-03-27 12:45:44 -04:00
abbreviation for \fB r\fP ofi \fB a\fP dvanced \fB s\fP tyle \fB i\fP nformation. If a theme
file is split over multiple files, include files can have the: \fB rasinc\fP
extension.
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.SH Basic Structure
.PP
2023-03-27 12:45:44 -04:00
Each element has a section with defined properties. Global properties can be
defined in section \fB \fC * { }\fR \& . Sub-section names begin with an optional hash
symbol \fB \fC #\fR \& .
2020-02-02 11:21:21 -05:00
.PP
It is advised to define the \fI global properties section\fP on top of the file to
make inheritance of properties clearer.
.PP
.RS
.nf
2017-04-03 11:39:09 -04:00
/* Global properties section */
* {
// list of properties
}
2020-02-02 11:21:21 -05:00
/* Element theme section. */
2017-11-05 09:28:17 -05:00
{element path} {
2017-04-03 11:39:09 -04:00
// list of properties
}
2020-02-02 11:21:21 -05:00
{elements... } {
2017-04-03 11:39:09 -04:00
// list of properties
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2023-03-27 12:45:44 -04:00
If there are multiple sections with the same name, they are merged. Duplicate
properties are overwritten and the last parsed entry kept.
2020-02-02 11:21:21 -05:00
.SH Global properties section
.PP
2023-03-27 12:45:44 -04:00
A theme can have one or more global properties sections. If there is more than
one, they will be merged.
2020-02-02 11:21:21 -05:00
.PP
The global properties section denotes the defaults for each element.
Each property of this section can be referenced with \fB \fC @{identifier}\fR
(See Properties section)
.PP
A global properties section is indicated with a \fB \fC *\fR as element path.
.SH Element theme section
.PP
A theme can have multiple element theme sections.
.PP
The element path can consist of multiple names separated by whitespace or dots.
2022-10-22 05:03:11 -04:00
Each element may contain any number of letters, numbers and \fB \fC -\fR \& 's.
2022-04-05 16:21:13 -04:00
The first element in the element path can optionally start with a \fB \fC #\fR (for
historic reasons). Multiple elements can be specified by a \fB \fC ,\fR \& .
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
This is a valid element name:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
element normal.normal {
2022-10-22 05:03:11 -04:00
background-color: blue;
2017-09-15 04:19:46 -04:00
}
2017-11-05 09:28:17 -05:00
button {
2022-10-22 05:03:11 -04:00
background-color: blue;
2017-04-03 11:39:09 -04:00
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-04-03 11:39:09 -04:00
And is identical to:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-11-05 09:28:17 -05:00
element normal normal, button {
2022-10-22 05:03:11 -04:00
background-color: blue;
2017-04-03 11:39:09 -04:00
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2022-04-05 16:21:13 -04:00
Each section inherits the global properties. Properties can be explicitly
inherited from their parent with the \fB \fC inherit\fR keyword.
2020-02-02 11:21:21 -05:00
In the following example:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-11-05 09:28:17 -05:00
window {
2017-04-03 11:39:09 -04:00
a: 1;
b: 2;
2019-12-14 04:59:10 -05:00
children: [ mainbox ];
2017-04-03 11:39:09 -04:00
}
2017-11-05 09:28:17 -05:00
mainbox {
2017-09-15 04:19:46 -04:00
a: inherit;
2017-04-03 11:39:09 -04:00
b: 4;
c: 8;
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2022-04-05 16:21:13 -04:00
The element \fB \fC mainbox\fR will have the following set of properties (if \fB \fC mainbox\fR
is a child of \fB \fC window\fR ):
2020-02-02 11:21:21 -05:00
.PP
.RS
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.nf
2017-04-03 11:39:09 -04:00
a: 1;
b: 4;
c: 8;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
If multiple sections are defined with the same name, they are merged by the
parser. If multiple properties with the same name are defined in one section,
the last encountered property is used.
.SH Properties Format
.PP
2017-04-03 11:39:09 -04:00
The properties in a section consist of:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
{identifier}: {value};
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
Both fields are mandatory for a property.
.PP
The \fB \fC identifier\fR names the specified property. Identifiers can consist of any
2022-10-22 05:03:11 -04:00
combination of numbers, letters and '-'. It must not contain any whitespace.
2020-02-02 11:21:21 -05:00
The structure of the \fB \fC value\fR defines the type of the property. The current
parser does not define or enforce a certain type of a particular \fB \fC identifier\fR \& .
When used, values with the wrong type that cannot be converted are ignored.
.PP
2017-08-13 14:31:46 -04:00
The current theme format supports different types:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a string
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
an integer number
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a fractional number
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a boolean value
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a color
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2021-06-13 14:50:25 -04:00
image
.IP \(bu 2
2017-08-13 14:31:46 -04:00
text style
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
line style
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a distance
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a padding
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a border
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a position
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a reference
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-08-13 14:31:46 -04:00
an orientation
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2021-05-22 18:17:27 -04:00
a cursor
.IP \(bu 2
2017-08-13 14:31:46 -04:00
a list of keywords
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-01-25 03:57:59 -05:00
an array of values
.IP \(bu 2
2018-07-09 06:40:14 -04:00
an environment variable
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-09-10 10:09:53 -04:00
Inherit
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Some of these types are a combination of other types.
2022-12-31 07:15:01 -05:00
.SS String
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC "[:print:]+"\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
A string is always surrounded by double quotes (\fB \fC "\fR ). Between the quotes there
can be any printable character.
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
For example:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
font: "Awasome 12";
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2022-10-22 05:03:11 -04:00
The string must be valid UTF-8, special characters can be escaped:
2022-04-05 16:21:13 -04:00
.PP
.RS
.nf
text {
content: "Line one\\ n\\ tIndented line two";
}
.fi
.RE
.PP
The following special characters can be escaped: \fB \fC \\ b\fR , \fB \fC \\ f\fR , \fB \fC \\ n\fR , \fB \fC \\ r\fR , \fB \fC \\ t\fR , \fB \fC \\ v\fR , \fB \fC \\ \fR and \fB \fC "\fR \& .
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS Integer
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Format: \fB \fC [-+]?[:digit:]+\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
An integer may contain any number.
.PP
2017-04-03 11:39:09 -04:00
For examples:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
lines: 12;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SS Real
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Format: \fB \fC [-+]?[:digit:]+(\\ .[:digit:]+)?\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
A real is an integer with an optional fraction.
.PP
2017-04-03 11:39:09 -04:00
For example:
2020-02-02 11:21:21 -05:00
.PP
.RS
2017-04-03 11:39:09 -04:00
.nf
2020-02-02 11:21:21 -05:00
real: 3.4;
2019-04-16 06:56:28 -04:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2022-10-22 05:03:11 -04:00
The following is not valid: \fB \fC \& .3\fR , \fB \fC 3.\fR or scientific notation: \fB \fC 3.4e-3\fR \& .
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS Boolean
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC (true|false)\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2022-10-22 05:03:11 -04:00
Boolean value is either \fB \fC true\fR or \fB \fC false\fR \& . This is case-sensitive.
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
For example:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
dynamic: false;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SS Image
2021-06-13 14:50:25 -04:00
.PP
2022-10-22 05:03:11 -04:00
\fB rofi\fP support a limited set of background-image formats.
2021-06-15 14:10:04 -04:00
.RS
2021-06-13 14:50:25 -04:00
.IP \(bu 2
Format: url("path to image");
.IP \(bu 2
2021-06-15 11:18:34 -04:00
Format: url("path to image", scale);
2021-06-15 14:10:04 -04:00
where scale is: none, both, width, height
2021-06-15 11:18:34 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Format: linear-gradient(stop color,stop1, color, stop2 color, ...);
2021-06-14 09:14:41 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Format: linear-gradient(to direction, stop color,stop1, color, stop2 color,
. ..); where direction is: top,left,right,bottom.
2021-06-14 10:04:15 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Format: linear-gradient(angle, stop color,stop1, color, stop2 color, ...);
2021-06-14 10:04:15 -04:00
Angle in deg,rad,grad (as used in color).
2021-06-13 14:50:25 -04:00
2021-06-15 14:10:04 -04:00
.RE
2021-06-13 14:50:25 -04:00
.PP
2021-06-15 11:18:34 -04:00
Where the \fB \fC path\fR is a string, and \fB \fC stop\fR color is of type color.
2021-06-13 14:50:25 -04:00
2022-12-31 07:15:01 -05:00
.SS Color
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
\fB rofi\fP supports the color formats as specified in the CSS standard (1,2,3 and
some of CSS 4)
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
Format: \fB \fC #{HEX}{3}\fR (rgb)
.IP \(bu 2
Format: \fB \fC #{HEX}{4}\fR (rgba)
.IP \(bu 2
Format: \fB \fC #{HEX}{6}\fR (rrggbb)
.IP \(bu 2
Format: \fB \fC #{HEX}{8}\fR (rrggbbaa)
.IP \(bu 2
Format: \fB \fC rgb[a]({INTEGER},{INTEGER},{INTEGER}[, {PERCENTAGE}])\fR
.IP \(bu 2
Format: \fB \fC rgb[a]({INTEGER}%,{INTEGER}%,{INTEGER}%[, {PERCENTAGE}])\fR
.IP \(bu 2
Format: \fB \fC hsl[a]( {ANGLE}, {PERCENTAGE}, {PERCENTAGE} [, {PERCENTAGE}])\fR
.IP \(bu 2
Format: \fB \fC hwb[a]( {ANGLE}, {PERCENTAGE}, {PERCENTAGE} [, {PERCENTAGE}])\fR
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Format: \fB \fC cmyk( {PERCENTAGE}, {PERCENTAGE}, {PERCENTAGE}, {PERCENTAGE} [,
{PERCENTAGE} ])\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Format: \fB \fC {named-color} [ / {PERCENTAGE} ]\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2022-10-22 05:03:11 -04:00
The white-space format proposed in CSS4 is also supported.
2020-02-02 11:21:21 -05:00
.PP
2017-05-17 02:24:28 -04:00
The different values are:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC {HEX}\fR is a hexadecimal number ('0-9a-f' case insensitive).
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC {INTEGER}\fR value can be between 0 and 255 or 0-100 when representing
percentage.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC {ANGLE}\fR is the angle on the color wheel, can be in \fB \fC deg\fR , \fB \fC rad\fR , \fB \fC grad\fR
or \fB \fC turn\fR \& . When no unit is specified, degrees is assumed.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC {PERCENTAGE}\fR can be between 0-1.0, or 0%-100%
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC {named-color}\fR is one of the following colors:AliceBlue, AntiqueWhite, Aqua, Aquamarine, Azure, Beige, Bisque, Black,
BlanchedAlmond, Blue, BlueViolet, Brown, BurlyWood, CadetBlue, Chartreuse,
Chocolate, Coral, CornflowerBlue, Cornsilk, Crimson, Cyan, DarkBlue,
DarkCyan, DarkGoldenRod, DarkGray, DarkGrey, DarkGreen, DarkKhaki,
DarkMagenta, DarkOliveGreen, DarkOrange, DarkOrchid, DarkRed, DarkSalmon,
DarkSeaGreen, DarkSlateBlue, DarkSlateGray, DarkSlateGrey, DarkTurquoise,
DarkViolet, DeepPink, DeepSkyBlue, DimGray, DimGrey, DodgerBlue, FireBrick,
FloralWhite, ForestGreen, Fuchsia, Gainsboro, GhostWhite, Gold, GoldenRod,
Gray, Grey, Green, GreenYellow, HoneyDew, HotPink, IndianRed, Indigo,
Ivory, Khaki, Lavender, LavenderBlush, LawnGreen, LemonChiffon, LightBlue,
LightCoral, LightCyan, LightGoldenRodYellow, LightGray, LightGrey,
LightGreen, LightPink, LightSalmon, LightSeaGreen, LightSkyBlue,
LightSlateGray, LightSlateGrey, LightSteelBlue, LightYellow, Lime,
LimeGreen, Linen, Magenta, Maroon, MediumAquaMarine, MediumBlue,
MediumOrchid, MediumPurple, MediumSeaGreen, MediumSlateBlue,
MediumSpringGreen, MediumTurquoise, MediumVioletRed, MidnightBlue,
MintCream, MistyRose, Moccasin, NavajoWhite, Navy, OldLace, Olive,
OliveDrab, Orange, OrangeRed, Orchid, PaleGoldenRod, PaleGreen,
PaleTurquoise, PaleVioletRed, PapayaWhip, PeachPuff, Peru, Pink, Plum,
PowderBlue, Purple, RebeccaPurple, Red, RosyBrown, RoyalBlue, SaddleBrown,
Salmon, SandyBrown, SeaGreen, SeaShell, Sienna, Silver, SkyBlue, SlateBlue,
SlateGray, SlateGrey, Snow, SpringGreen, SteelBlue, Tan, Teal, Thistle,
Tomato, Turquoise, Violet, Wheat, White, WhiteSmoke, Yellow,
YellowGreen,transparent
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
For example:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
background-color: #FF0000;
border-color: rgba(0,0,1, 0.5);
text-color: SeaGreen;
2020-02-02 11:21:21 -05:00
2017-10-03 14:38:15 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-10-03 14:38:15 -04:00
or
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
background-color: transparent;
text-color: Black;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SS Text style
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC (bold|italic|underline|strikethrough|none)\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Text style indicates how the highlighted text is emphasized. \fB \fC None\fR indicates
that no emphasis should be applied.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC bold\fR : make the text thicker then the surrounding text.
.IP \(bu 2
\fB \fC italic\fR : put the highlighted text in script type (slanted).
.IP \(bu 2
2022-07-30 08:50:05 -04:00
\fB \fC underline\fR : put a line under the text.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-07-30 08:50:05 -04:00
\fB \fC strikethrough\fR : put a line through the text.
2022-07-30 09:05:28 -04:00
.RE
.PP
The following options are available on pango 1.50.0 and up:
.RS
2022-07-30 08:50:05 -04:00
.IP \(bu 2
\fB \fC uppercase\fR : Uppercase the text.
.IP \(bu 2
\fB \fC lowercase\fR : Lowercase the text.
2022-07-30 09:07:11 -04:00
.RE
.PP
The following option is disabled as pango crashes on this if there is eel
2023-03-27 12:45:44 -04:00
upsizing or wrapping. This will be re-enabled once fixed:
2022-07-30 09:07:11 -04:00
.RS
2022-07-30 08:50:05 -04:00
.IP \(bu 2
\fB \fC capitalize\fR : Capitalize the text.
2021-05-02 14:01:03 -04:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS Line style
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC (dash|solid)\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Indicates how a line should be drawn.
It currently supports:
2023-03-27 12:45:44 -04:00
- \fB \fC dash\fR : a dashed line, where the gap is the same width as the dash
- \fB \fC solid\fR : a solid line
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS Distance
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC {Integer}px\fR
.IP \(bu 2
Format: \fB \fC {Real}em\fR
.IP \(bu 2
Format: \fB \fC {Real}ch\fR
.IP \(bu 2
Format: \fB \fC {Real}%\fR
2020-06-09 16:57:02 -04:00
.IP \(bu 2
2023-07-23 18:18:03 -04:00
Format: \fB \fC {Real}mm\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
A distance can be specified in 3 different units:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC px\fR : Screen pixels.
.IP \(bu 2
\fB \fC em\fR : Relative to text height.
.IP \(bu 2
\fB \fC ch\fR : Relative to width of a single number.
.IP \(bu 2
2020-06-09 16:57:02 -04:00
\fB \fC mm\fR : Actual size in millimeters (based on dpi).
.IP \(bu 2
2020-02-02 11:21:21 -05:00
\fB \fC %\fR : Percentage of the \fB monitor\fP size.
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Distances used in the horizontal direction use the monitor width. Distances in
the vertical direction use the monitor height.
For example:
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
padding: 10%;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2022-10-22 05:03:11 -04:00
On a full-HD (1920x1080) monitor, it defines a padding of 192 pixels on the left
2020-02-02 11:21:21 -05:00
and right side and 108 pixels on the top and bottom.
2020-04-24 13:54:08 -04:00
.SS Calculating sizes
.PP
Rofi supports some maths in calculating sizes. For this it uses the CSS syntax:
.PP
2020-04-22 17:41:25 -04:00
.RS
2020-04-24 13:54:08 -04:00
.nf
2022-10-22 05:03:11 -04:00
width: calc( 100% - 37px );
2020-04-24 13:54:08 -04:00
.fi
.RE
2022-04-06 14:23:07 -04:00
.PP
.RS
.nf
width: calc( 20% min 512 );
.fi
.RE
2020-04-24 13:54:08 -04:00
.PP
It supports the following operations:
2021-06-15 14:10:04 -04:00
.RS
2020-04-24 13:54:08 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC +\fR : Add
2020-04-24 13:54:08 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC -\fR : Subtract
2020-04-24 13:54:08 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC /\fR : Divide
2020-04-22 17:41:25 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC -\fR : Multiply
2020-04-24 13:54:08 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC modulo\fR : Modulo
2020-09-19 10:49:50 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC min\fR : Minimum of lvalue or rvalue;
2020-09-19 10:49:50 -04:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC max\fR : Maximum of lvalue or rvalue;
2022-01-19 12:56:23 -05:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC floor\fR : Round down lvalue to the next multiple of rvalue
2022-01-19 12:56:23 -05:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC ceil\fR : Round up lvalue to the next multiple of rvalue
2022-01-19 12:56:23 -05:00
.IP \(bu 2
2023-02-14 09:53:10 -05:00
\fB \fC round\fR : Round lvalue to the next multiple of rvalue
2020-04-24 13:54:08 -04:00
2021-06-15 14:10:04 -04:00
.RE
2020-04-24 13:54:08 -04:00
.PP
It uses the C precedence ordering.
2022-12-31 07:15:01 -05:00
.SS Padding
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC {Integer}\fR
.IP \(bu 2
Format: \fB \fC {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance} {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance} {Distance} {Distance}\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
If no unit is specified, pixels are assumed.
.PP
2017-04-03 11:39:09 -04:00
The different number of fields in the formats are parsed like:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
1 field: \fB \fC all\fR
.IP \(bu 2
2022-10-22 05:03:11 -04:00
2 fields: \fB \fC top&bottom\fR \fB \fC left&right\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
3 fields: \fB \fC top\fR , \fB \fC left&right\fR , \fB \fC bottom\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
4 fields: \fB \fC top\fR , \fB \fC right\fR , \fB \fC bottom\fR , \fB \fC left\fR
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS Border
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC {Integer}\fR
.IP \(bu 2
Format: \fB \fC {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance} {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Distance} {Distance} {Distance}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Line style}\fR
.IP \(bu 2
Format: \fB \fC {Distance} {Line style} {Distance} {Line style}\fR
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Format: \fB \fC {Distance} {Line style} {Distance} {Line style} {Distance} {Line
style}\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Format: \fB \fC {Distance} {Line style} {Distance} {Line style} {Distance} {Line
style} {Distance} {Line style}\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Borders are identical to padding, except that each distance field has a line
style property.
.PP
.RS
.PP
When no unit is specified, pixels are assumed.
2022-10-22 05:03:11 -04:00
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SS Position
2020-02-02 11:21:21 -05:00
.PP
Indicate a place on the window/monitor.
2021-06-15 14:10:04 -04:00
2022-04-05 18:04:30 -04:00
.PP
.RS
.nf
┌─────────────┬─────────────┬─────────────┐
│ north west │ north │ north east │
├─────────────┼─────────────┼─────────────┤
│ west │ center │ east │
├─────────────┼─────────────┼─────────────┤
│ south west │ south │ south east │
└─────────────┴─────────────┴─────────────┘
.fi
.RE
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Format: \fB \fC (center|east|north|west|south|north east|north west|south west|south
east)\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS Visibility
2020-02-02 11:21:21 -05:00
.PP
2017-11-05 09:28:17 -05:00
It is possible to hide widgets:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
2022-04-05 16:21:13 -04:00
.RS
.nf
2020-02-02 11:21:21 -05:00
inputbar {
enabled: false;
}
2022-04-05 16:21:13 -04:00
.fi
.RE
2022-12-31 07:15:01 -05:00
.SS Reference
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC @{PROPERTY NAME}\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
A reference can point to another reference. Currently, the maximum number of
redirects is 20. A property always refers to another property. It cannot be
used for a subpart of the property. For example, this is not valid:
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2020-01-02 06:00:44 -05:00
highlight: bold @pink;
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-07-26 05:47:47 -04:00
But this is:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-07-26 05:47:47 -04:00
* {
myhigh: bold #FAA;
}
2017-11-05 09:28:17 -05:00
window {
2017-07-26 05:47:47 -04:00
highlight: @myhigh;
}
2020-02-02 11:21:21 -05:00
2017-07-26 05:47:47 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2021-09-02 03:55:31 -04:00
.RS
.IP \(bu 2
Format: \fB \fC var(PROPERTY NAME, DEFAULT)\fR
.RE
.PP
2023-03-27 12:45:44 -04:00
A reference can point to another reference. Currently, the maximum number of
redirects is 20. A property always refers to another property. It cannot be
used for a subpart of the property.
2021-09-02 03:55:31 -04:00
.PP
Example:
.PP
.RS
.nf
window {
width: var( width, 30%);
}
.fi
.RE
.PP
2023-03-27 12:45:44 -04:00
If the property \fB \fC width\fR is set globally (\fB \fC *{}\fR ) that value is used, if the
property \fB \fC width\fR is not set, the default value is used.
2021-09-02 03:55:31 -04:00
2022-12-31 07:15:01 -05:00
.SS Orientation
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC (horizontal|vertical)\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Specify the orientation of the widget.
2020-01-02 06:00:44 -05:00
2022-12-31 07:15:01 -05:00
.SS Cursor
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2021-05-22 18:17:27 -04:00
Format: \fB \fC (default|pointer|text)\fR
2021-06-15 14:10:04 -04:00
.RE
2021-05-22 18:17:27 -04:00
.PP
2023-03-27 12:45:44 -04:00
Specify the type of mouse cursor that is set when the mouse pointer is over the
widget.
2021-05-22 18:17:27 -04:00
2022-12-31 07:15:01 -05:00
.SS List of keywords
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC [ keyword, keyword ]\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
A list starts with a '[' and ends with a ']'. The entries in the list are
comma-separated. The \fB \fC keyword\fR in the list refers to an widget name.
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS List of values
2022-01-25 03:57:59 -05:00
.RS
.IP \(bu 2
Format: \fB \fC [ value, value, ... ]\fR
.RE
.PP
2023-03-27 12:45:44 -04:00
An list starts with a '[' and ends with a ']'. The entries in the list are
comma-separated.
2022-01-25 03:57:59 -05:00
2022-12-31 07:15:01 -05:00
.SS Environment variable
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC ${:alnum:}\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
This will parse the environment variable as the property value. (that then can
be any of the above types). The environment variable should be an alphanumeric
string without white-space.
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2018-07-09 06:40:14 -04:00
* {
2022-10-22 05:03:11 -04:00
background-color: ${BG};
2018-07-09 06:40:14 -04:00
}
2020-02-02 11:21:21 -05:00
2018-07-09 06:40:14 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2021-09-02 03:55:31 -04:00
.RS
.IP \(bu 2
Format: \fB \fC env(ENVIRONMENT, default)\fR
.RE
.PP
2023-03-27 12:45:44 -04:00
This will parse the environment variable as the property value. (that then can
be any of the above types). The environment variable should be an alphanumeric
string without white-space. If the environment value is not found, the default
value is used.
2021-09-02 03:55:31 -04:00
.PP
.RS
.nf
window {
width: env(WIDTH, 40%);
}
.fi
.RE
.PP
2023-03-27 12:45:44 -04:00
If environment WIDTH is set, then that value is parsed, otherwise the default
value (\fB \fC 40%\fR ).
2021-09-02 03:55:31 -04:00
2022-12-31 07:15:01 -05:00
.SS Inherit
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
Format: \fB \fC inherit\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
Inherits the property from its parent widget.
.PP
.RS
.nf
2017-11-05 09:28:17 -05:00
mainbox {
2022-10-22 05:03:11 -04:00
border-color: inherit;
2017-09-10 10:09:53 -04:00
}
2020-02-02 11:21:21 -05:00
2017-09-10 10:09:53 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SH Elements paths
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Element paths exists of two parts, the first part refers to the actual widget
by name. Some widgets have an extra state.
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
For example:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-11-05 09:28:17 -05:00
element selected {
2017-04-03 11:39:09 -04:00
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2017-09-10 10:09:53 -04:00
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Here \fB \fC element selected\fR is the name of the widget, \fB \fC selected\fR is the state of
the widget.
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
The difference between dots and spaces is purely cosmetic. These are all the
same:
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
element .selected {
element.selected {
2017-04-03 11:39:09 -04:00
}
2017-11-05 09:28:17 -05:00
element selected {
2017-04-03 11:39:09 -04:00
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2022-12-31 07:15:01 -05:00
.SS Supported element paths
2023-03-27 12:45:44 -04:00
.SS Base widgets
2020-02-02 11:21:21 -05:00
.PP
2022-12-31 07:15:01 -05:00
The default widgets available in \fB rofi\fP and the default hierarchic:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC window\fR
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC overlay\fR : the overlay widget.
.IP \(bu 2
\fB \fC mainbox\fR : The mainbox box.
.IP \(bu 2
\fB \fC inputbar\fR : The input bar box.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC box\fR : the horizontal @box packing the widgets
2023-03-27 12:45:44 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC case-indicator\fR : the case/sort indicator @textbox
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC prompt\fR : the prompt @textbox
.IP \(bu 2
\fB \fC entry\fR : the main entry @textbox
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC num-rows\fR : Shows the total number of rows.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC num-filtered-rows\fR : Shows the total number of rows after
filtering.
2022-06-27 10:56:59 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC textbox-current-entry\fR : Shows the text of the currently selected
entry.
2022-06-27 11:09:21 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC icon-current-entry\fR : Shows the icon of the currently selected
entry.
.RE
2021-06-15 14:10:04 -04:00
.RE
2022-10-22 05:03:11 -04:00
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC listview\fR : The listview.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC scrollbar\fR : the listview scrollbar
.IP \(bu 2
\fB \fC element\fR : a box in the listview holding the entries
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC element-icon\fR : the widget in the listview's entry showing the
(optional) icon
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC element-index\fR : the widget in the listview's entry
keybindable index (1,2,3..0)
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB \fC element-text\fR : the widget in the listview's entry showing the
text.
2021-06-15 14:10:04 -04:00
.RE
2022-10-22 05:03:11 -04:00
2021-06-15 14:10:04 -04:00
.RE
2022-10-11 03:19:35 -04:00
2022-10-22 05:03:11 -04:00
.IP \(bu 2
\fB \fC mode-switcher\fR : the main horizontal @box packing the buttons.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC button\fR : the buttons @textbox for each mode
2021-06-15 14:10:04 -04:00
.RE
2022-10-22 05:03:11 -04:00
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC message\fR : The container holding the textbox.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC textbox\fR : the message textbox
2021-06-15 14:10:04 -04:00
.RE
2022-10-22 05:03:11 -04:00
2021-06-15 14:10:04 -04:00
.RE
2022-10-22 05:03:11 -04:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Note that these path names match the default theme. Themes that provide a
custom layout will have different elements, and structure.
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS State
2020-02-02 11:21:21 -05:00
.PP
2017-04-03 11:39:09 -04:00
State: State of widget
2020-02-02 11:21:21 -05:00
.PP
Optional flag(s) indicating state of the widget, used for theming.
.PP
These are appended after the name or class of the widget.
2023-03-27 12:45:44 -04:00
.SS Example
2020-02-02 11:21:21 -05:00
.PP
\fB \fC button selected.normal { }\fR
.PP
\fB \fC element selected.urgent { }\fR
.PP
2017-04-03 11:39:09 -04:00
Currently only the entrybox and scrollbar have states:
2020-02-02 11:21:21 -05:00
2023-03-27 12:45:44 -04:00
.SS Entrybox
2020-02-02 11:21:21 -05:00
.PP
\fB \fC {visible modifier}.{state}\fR
.PP
Where \fB \fC visible modifier\fR can be:
2023-03-27 12:45:44 -04:00
- normal: no modification
- selected: the entry is selected/highlighted by user
- alternate: the entry is at an alternating row (uneven row)
2020-02-02 11:21:21 -05:00
.PP
Where \fB \fC state\fR is:
2023-03-27 12:45:44 -04:00
- normal: no modification
- urgent: this entry is marked urgent
- active: this entry is marked active
2020-02-02 11:21:21 -05:00
.PP
These can be mixed.
.PP
2017-04-03 11:39:09 -04:00
Example:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
nametotextbox selected.active {
2022-10-22 05:03:11 -04:00
background-color: #003642;
text-color: #008ed4;
2017-04-03 11:39:09 -04:00
}
2020-02-02 11:21:21 -05:00
2017-04-03 11:39:09 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2023-03-27 12:45:44 -04:00
Sets all selected textboxes marked active to the given text and background
color. Note that a state modifies the original element, it therefore contains
all the properties of that element.
2020-02-02 11:21:21 -05:00
.SS Scrollbar
.PP
The scrollbar uses the \fB \fC handle\fR state when drawing the small scrollbar handle.
This allows the colors used for drawing the handle to be set independently.
2022-12-31 07:15:01 -05:00
.SH Widget properties
2020-02-02 11:21:21 -05:00
.PP
2017-08-13 14:31:46 -04:00
The following properties are currently supported:
2020-01-02 06:00:44 -05:00
2022-12-31 07:15:01 -05:00
.SS all widgets
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB enabled\fP : enable/disable rendering of the widget
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB padding\fP : padding
2020-02-02 11:21:21 -05:00
Padding on the inside of the widget
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB margin\fP : padding
2020-02-02 11:21:21 -05:00
Margin on the outside of the widget
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB border\fP : border
2020-02-02 11:21:21 -05:00
Border around the widget (between padding and margin)/
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB border-radius\fP : padding
2020-02-02 11:21:21 -05:00
Sets a radius on the corners of the borders.
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB background-color\fP : color
2020-02-02 11:21:21 -05:00
Background color
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB background-image\fP : image
2021-06-13 14:50:25 -04:00
Background image
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB border-color\fP : color
2020-02-02 11:21:21 -05:00
Color of the border
2021-05-22 18:17:27 -04:00
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB cursor\fP : cursor
2023-03-27 12:45:44 -04:00
Type of mouse cursor that is set when the mouse pointer is hovered over the
widget.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS window
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2020-02-02 11:21:21 -05:00
\fB font\fP : string
The font used in the window
.IP \(bu 2
\fB transparency\fP : string
Indicating if transparency should be used and what type:
2023-03-27 12:45:44 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB real\fP - True transparency. Only works with a compositor.
2023-03-27 12:45:44 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB background\fP - Take a screenshot of the background image and use that.
2023-03-27 12:45:44 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB screenshot\fP - Take a screenshot of the screen and use that.
2023-03-27 12:45:44 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB Path\fP to png file - Use an image.
2023-03-27 12:45:44 -04:00
.RE
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB location\fP : position
2023-03-27 12:45:44 -04:00
The place of the anchor on the monitor
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB anchor\fP : anchor
2023-03-27 12:45:44 -04:00
The anchor position on the window
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB fullscreen\fP : boolean Window is fullscreen.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB width\fP : distance The width of the window
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB x-offset\fP : distance
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB y-offset\fP : distance The offset of the window to the anchor point,
allowing you to push the window left/right/up/down
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2023-03-27 12:45:44 -04:00
.SS scrollbar Properties
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB background-color\fP : color
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB handle-width\fP : distance
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB handle-color\fP : color
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB border-color\fP : color
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS box
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB orientation\fP : orientation Set the direction the elements are packed.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB spacing\fP : distance Distance between the packed elements.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS textbox
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB background-color\fP : color
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB border-color\fP : the color used for the border around the widget.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB font\fP : the font used by this textbox (string).
.IP \(bu 2
2022-04-05 16:21:13 -04:00
\fB str\fP /\fB content\fP : the string to display by this textbox (string).
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB vertical-align\fP : Vertical alignment of the text. A number between 0
(top) and 1 (bottom).
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB horizontal-align\fP : Horizontal alignment of the text. A number between 0
(left) and 1 (right).
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB text-color\fP : the text color to use.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB text-transform\fP : text style {color} for the whole text.
2022-07-30 08:50:05 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB highlight\fP : text style {color}. color is optional, multiple
highlight styles can be added like: bold underline italic #000000; This
option is only available on the \fB \fC element-text\fR widget.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB width\fP : override the desired width for the textbox.
.IP \(bu 2
\fB content\fP : Set the displayed text (String).
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB placeholder\fP : Set the displayed text (String) when nothing is
entered.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB placeholder-markup\fP : If true, placeholder text supports pango
markup for stylizing.
2022-08-28 15:47:05 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB placeholder-color\fP : Color of the placeholder text.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB blink\fP : Enable/Disable blinking on an input textbox
(Boolean).
2020-12-28 16:54:20 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB markup\fP : Force markup on, beware that only valid pango markup
strings are shown.
2022-01-25 03:57:59 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB tab-stops\fP : array of distances. Set the location of tab stops by
their distance from the beginning of the line. Each distance should be
greater than the previous one. The text appears to the right of the tab
stop position (other alignments are not supported yet).
2022-11-25 04:28:34 -05:00
.IP \(bu 2
\fB cursor-width\fP : The width of the cursor.
.IP \(bu 2
\fB cursor-color\fP : The color used to draw the cursor.
2022-12-23 07:38:09 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB cursor-outline\fP : Enable a border (outline) around the cursor.
(Boolean)
2022-12-23 16:11:22 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB cursor-outline-width\fP : The width of the border around the cursor.
(Double)
2022-12-23 16:11:22 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB cursor-outline-color\fP : The color to use for the cursor outline.
(Color)
2022-12-23 16:11:22 -05:00
.IP \(bu 2
2022-12-23 07:38:09 -05:00
\fB text-outline\fP : Enable a border (outline) around the text. (Boolean)
.IP \(bu 2
\fB text-outline-width\fP : The width of the border around the text. (Double)
.IP \(bu 2
\fB text-outline-color\fP : The color to use for the text outline. (Color)
2020-12-28 16:54:20 -05:00
2021-06-15 14:10:04 -04:00
.RE
2022-12-31 07:15:01 -05:00
.SS listview
2021-06-15 14:10:04 -04:00
.RS
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB columns\fP : integer Number of columns to show (at least 1)
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB fixed-height\fP : boolean Always show \fB \fC lines\fR rows, even if fewer
elements are available.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB dynamic\fP : boolean \fB \fC True\fR if the size should change when filtering
the list, \fB \fC False\fR if it should keep the original height.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB scrollbar\fP : boolean If the scrollbar should be enabled/disabled.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB scrollbar-width\fP : distance Width of the scrollbar
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB cycle\fP : boolean When navigating, it should wrap around
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB spacing\fP : distance Spacing between the elements (both vertical
and horizontal)
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB lines\fP : integer Number of rows to show in the list view.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB layout\fP : orientation Indicate how elements are stacked.
Horizontal implements the dmenu style.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB reverse\fP : boolean Reverse the ordering (top down to bottom up).
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB flow\fP : orientation The order the elements are layed out.
Vertical is the original 'column' view.
2022-03-07 14:37:58 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB fixed-columns\fP : boolean Do not reduce the number of columns shown when
number of visible elements is not enough to fill them all.
2022-07-21 15:48:53 -04:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
\fB require-input\fP : boolean Listview requires user input to be unhidden.
The list is still present and hitting accept will activate the first entry.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2023-01-25 17:15:30 -05:00
.SH Listview widget
2020-02-02 11:21:21 -05:00
.PP
2023-01-25 16:55:04 -05:00
The listview widget is special container widget.
2023-01-25 17:15:30 -05:00
It has the following fixed children widgets:
2023-01-25 17:00:30 -05:00
.RS
.IP \(bu 2
0 or more \fB \fC element\fR widgets of the type box.
.IP \(bu 2
An optional \fB \fC scrollbar\fR widget. This can be enabled using the scrollbar
property.
.RE
2023-01-25 16:55:04 -05:00
.PP
2023-01-25 17:15:30 -05:00
These cannot be changed using the \fB \fC children\fR property.
.PP
2023-02-14 09:53:10 -05:00
Each Entry displayed by listview is captured by a \fB \fC box\fR called \fB \fC element\fR \& .
2023-01-25 17:15:30 -05:00
An \fB \fC element\fR widget can contain the following special child widgets:
2023-01-25 17:00:30 -05:00
.RS
.IP \(bu 2
\fB \fC element-icon\fR : An icon widget showing the icon associated to the entry.
.IP \(bu 2
\fB \fC element-text\fR : A textbox widget showing the text associated to the entry.
.IP \(bu 2
\fB \fC element-index\fR : A textbox widget that shows the shortcut keybinding number.
.RE
2023-01-25 16:55:04 -05:00
.PP
2023-01-25 17:15:30 -05:00
By default the \fB \fC element-icon\fR and \fB \fC element-text\fR child widgets are added to the
2023-02-14 09:53:10 -05:00
\fB \fC element\fR \& . This can be modified using the \fB \fC children\fR property or the
\fB \fC [no]-show-icons\fR option.
2023-01-25 17:15:30 -05:00
.PP
2023-03-27 12:45:44 -04:00
A child added with another name is treated the same as the special widget
described in the advanced layout
2023-03-05 05:18:30 -05:00
\[ la]#advanced-layout\[ ra] section.
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SS listview text highlight
2020-09-06 05:59:41 -04:00
.PP
2022-10-22 05:03:11 -04:00
The \fB \fC element-text\fR widget in the \fB \fC listview\fR is the one used to show the text.
2023-03-27 12:45:44 -04:00
On this widget set the \fB \fC highlight\fR property (only place this property is used)
to change the style of highlighting. The \fB \fC highlight\fR property consist of the
\fB \fC text-style\fR property and a color.
2020-09-06 05:59:41 -04:00
.PP
To disable highlighting:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
element-text {
2020-09-06 05:59:41 -04:00
highlight: None;
}
.fi
.RE
.PP
To set to red underlined:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
element-text {
2020-09-06 05:59:41 -04:00
highlight: underline red;
}
.fi
.RE
2020-02-02 11:21:21 -05:00
.SH Layout
.PP
2023-03-27 12:45:44 -04:00
The new format allows the layout of the \fB rofi\fP window to be tweaked
extensively. For each widget, the themer can specify padding, margin, border,
font, and more. It even allows, as an advanced feature, to pack widgets in a
custom structure.
2020-02-02 11:21:21 -05:00
2023-03-27 12:45:44 -04:00
.SS Basic layout structure
2020-02-02 11:21:21 -05:00
.PP
The whole view is made out of boxes that pack other boxes or widgets.
The box can be vertical or horizontal. This is loosely inspired by GTK
\[ la]http://gtk.org/\[ ra]\& .
.PP
The current layout of \fB rofi\fP is structured as follows:
.PP
.RS
.nf
2022-04-05 18:04:30 -04:00
┌────────────────────────────────────────────────────────────────────────────────────┐
│ window {BOX:vertical} │
│ ┌───────────────────────────────────────────────────────────────────────────────┐ │
│ │ mainbox {BOX:vertical} │ │
│ │ ┌───────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ inputbar {BOX:horizontal} │ │ │
│ │ │ ┌─────────┐ ┌─┐ ┌───────────────────────────────┐ ┌───┐ ┌───┐ ┌───┐ ┌───┐ │ │ │
│ │ │ │ prompt │ │:│ │ entry │ │#fr│ │ / │ │#ns│ │ci │ │ │ │
│ │ │ └─────────┘ └─┘ └───────────────────────────────┘ └───┘ └───┘ └───┘ └───┘ │ │ │
│ │ └───────────────────────────────────────────────────────────────────────────┘ │ │
│ │ │ │
│ │ ┌───────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ message │ │ │
│ │ │ ┌───────────────────────────────────────────────────────────────────────┐ │ │ │
│ │ │ │ textbox │ │ │ │
│ │ │ └───────────────────────────────────────────────────────────────────────┘ │ │ │
│ │ └───────────────────────────────────────────────────────────────────────────┘ │ │
│ │ │ │
│ │ ┌───────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ listview │ │ │
│ │ │ ┌─────────────────────────────────────────────────────────────────────┐ │ │ │
│ │ │ │ element │ │ │ │
│ │ │ │ ┌─────────────────┐ ┌─────────────────────────────────────────────┐ │ │ │ │
│ │ │ │ │element─icon │ │element─text │ │ │ │ │
│ │ │ │ └─────────────────┘ └─────────────────────────────────────────────┘ │ │ │ │
│ │ │ └─────────────────────────────────────────────────────────────────────┘ │ │ │
│ │ └───────────────────────────────────────────────────────────────────────────┘ │ │
│ │ │ │
│ │ ┌───────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ mode─switcher {BOX:horizontal} │ │ │
│ │ │ ┌───────────────┐ ┌───────────────┐ ┌──────────────┐ ┌───────────────┐ │ │ │
│ │ │ │ Button │ │ Button │ │ Button │ │ Button │ │ │ │
│ │ │ └───────────────┘ └───────────────┘ └──────────────┘ └───────────────┘ │ │ │
│ │ └───────────────────────────────────────────────────────────────────────────┘ │ │
│ └───────────────────────────────────────────────────────────────────────────────┘ │
└────────────────────────────────────────────────────────────────────────────────────┘
2020-02-02 11:21:21 -05:00
2017-07-24 08:36:31 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
.RS
2020-01-02 06:00:44 -05:00
2021-07-05 10:47:24 -04:00
.RS
.IP \(bu 2
2022-10-22 05:03:11 -04:00
ci is the case-indicator
2021-07-05 10:47:24 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
fr is the num-filtered-rows
2021-07-05 10:47:24 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
ns is the num-rows
2021-07-05 10:47:24 -04:00
.RE
2020-02-02 11:21:21 -05:00
.RE
.SS Error message structure
.PP
.RS
.nf
2022-04-05 18:04:30 -04:00
┌──────────────────────────────────────────────────────────────────────────────────┐
│ window {BOX:vertical} │
│ ┌─────────────────────────────────────────────────────────────────────────────┐ │
│ │ error─message {BOX:vertical} │ │
│ │ ┌────────────────────────────────────────────────────────────────────────┐ │ │
│ │ │ textbox │ │ │
│ │ └────────────────────────────────────────────────────────────────────────┘ │ │
│ └─────────────────────────────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────────────────────┘
2020-02-02 11:21:21 -05:00
2018-06-14 05:16:32 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.SS Advanced layout
.PP
2023-03-27 12:45:44 -04:00
The layout of \fB rofi\fP can be tweaked by packing the 'fixed' widgets in a
custom structure.
2020-02-02 11:21:21 -05:00
.PP
The following widgets are fixed, as they provide core \fB rofi\fP functionality:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-07-24 08:36:31 -04:00
prompt
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-07-24 08:36:31 -04:00
entry
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2019-04-16 06:56:28 -04:00
overlay
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
case-indicator
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-07-24 08:36:31 -04:00
message
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2017-07-24 08:36:31 -04:00
listview
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
mode-switcher
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
num-rows
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
num-filtered-rows
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
The following keywords are defined and can be used to automatically pack a
subset of the widgets. These are used in the default theme as depicted in the
figure above.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
mainbox Packs: \fB \fC inputbar, message, listview, mode-switcher\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
inputbar Packs: \fB \fC prompt,entry,case-indicator\fR
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Any widget name starting with \fB \fC textbox\fR is a textbox widget, others are box
widgets and can pack other widgets.
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
There are several special widgets that can be used by prefixing the name of the
widget:
2021-06-15 14:10:04 -04:00
2023-03-27 12:45:44 -04:00
.SS Textbox widget
2021-07-02 12:01:46 -04:00
.PP
2022-10-22 05:03:11 -04:00
This is a read-only textbox widget. The displayed string can be set with \fB \fC content\fR \& .
2021-07-02 12:01:46 -04:00
.PP
Example:
.PP
2021-06-15 14:10:04 -04:00
.RS
2021-07-02 12:01:46 -04:00
.nf
2022-10-22 05:03:11 -04:00
textbox-custom {
2021-07-02 12:01:46 -04:00
expand: false;
2021-08-14 07:04:42 -04:00
content: "My Message";
2021-07-02 12:01:46 -04:00
}
.fi
.RE
.SS Icon
.PP
2023-03-27 12:45:44 -04:00
This is an icon widget. The displayed icon can be set with \fB \fC filename\fR and size
with \fB \fC size\fR \& . If the property \fB \fC action\fR is set, it acts as a button. \fB \fC action\fR can
be set to a keybinding name and completes that action. (see rofi -show keys for
a list).
2021-07-02 12:01:46 -04:00
2021-07-14 11:29:38 -04:00
.PP
2023-03-27 12:45:44 -04:00
If the \fB \fC squared\fR property is set to \fB false\fP the widget height and width are
not forced to be equal.
2021-07-14 11:29:38 -04:00
2021-07-02 12:01:46 -04:00
.PP
Example:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
icon-paste {
2021-07-02 12:01:46 -04:00
expand: false;
2022-10-22 05:03:11 -04:00
filename: "gtk-paste";
2021-07-02 12:01:46 -04:00
size: 24;
2022-10-22 05:03:11 -04:00
vertical-align: 0.5;
action: "kb-primary-paste";
2021-07-02 12:01:46 -04:00
}
.fi
.RE
.SS button
.PP
2023-03-27 12:45:44 -04:00
This is a textbox widget that can have a 'clickable' action. The \fB \fC action\fR can
be set to: \fB \fC keybinding\fR : accepts a keybinding name and completes that action.
(see rofi -show keys for a list).
2020-02-02 11:21:21 -05:00
2021-07-02 12:01:46 -04:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
button-paste {
2021-07-02 12:01:46 -04:00
expand: false;
content: "My Clickable Message";
2022-10-22 05:03:11 -04:00
vertical-align: 0.5;
action: "kb-primary-paste";
2021-07-02 12:01:46 -04:00
}
.fi
2021-06-15 14:10:04 -04:00
.RE
2021-07-02 12:01:46 -04:00
.SS Children
2020-02-02 11:21:21 -05:00
.PP
To specify children, set the \fB \fC children\fR
property (this always happens on the \fB \fC box\fR child, see example below):
.PP
.RS
.nf
2021-07-02 12:01:46 -04:00
inputbar {
2022-10-22 05:03:11 -04:00
children: [prompt,entry,overlay,case-indicator];
2021-07-02 12:01:46 -04:00
}
2020-02-02 11:21:21 -05:00
2017-07-24 08:36:31 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
The theme needs to be updated to match the hierarchy specified.
.PP
2017-07-24 08:36:31 -04:00
Below is an example of a theme emulating dmenu:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2017-07-24 08:36:31 -04:00
* {
2022-10-22 05:03:11 -04:00
background-color: Black;
text-color: White;
border-color: White;
2017-07-24 08:36:31 -04:00
font: "Times New Roman 12";
}
2017-11-05 09:28:17 -05:00
window {
2017-07-24 08:36:31 -04:00
anchor: north;
location: north;
width: 100%;
padding: 4px;
children: [ horibox ];
}
2017-11-05 09:28:17 -05:00
horibox {
2017-07-24 08:36:31 -04:00
orientation: horizontal;
children: [ prompt, entry, listview ];
}
2017-11-05 09:28:17 -05:00
listview {
2017-07-24 08:36:31 -04:00
layout: horizontal;
spacing: 5px;
lines: 10;
}
2017-11-05 09:28:17 -05:00
entry {
2017-07-24 08:36:31 -04:00
expand: false;
width: 10em;
}
2017-11-05 09:28:17 -05:00
element {
2017-07-24 08:36:31 -04:00
padding: 0px 2px;
}
2017-11-05 09:28:17 -05:00
element selected {
2022-10-22 05:03:11 -04:00
background-color: SteelBlue;
2017-07-24 08:36:31 -04:00
}
2020-02-02 11:21:21 -05:00
2017-07-24 08:36:31 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.SS Padding and margin
.PP
Just like CSS, \fB rofi\fP uses the box model for each widget.
.PP
.RS
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.nf
2022-04-05 18:04:30 -04:00
┌──────────────────────────────────────────────────────────────────┐
│ margin │
│ ┌────────────────────────────────────────────────────────────┐ │
│ │ border │ │
│ │ ┌────────────────────────────────────────────────────────┐ │ │
│ │ │ padding │ │ │
│ │ │ ┌────────────────────────────────────────────────────┐ │ │ │
│ │ │ │ content │ │ │ │
│ │ │ └────────────────────────────────────────────────────┘ │ │ │
│ │ └────────────────────────────────────────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────┘ │
└──────────────────────────────────────────────────────────────────┘
2020-02-02 11:21:21 -05:00
2017-07-24 03:57:53 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2017-07-24 03:57:53 -04:00
Explanation of the different parts:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
Content - The content of the widget.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Padding - Clears an area around the widget. The padding shows the
background color of the widget.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Border - A border that goes around the padding and content. The border use
the border-color of the widget.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-03-27 12:45:44 -04:00
Margin - Clears an area outside the border. The margin is transparent.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
The box model allows us to add a border around elements, and to define space
between elements.
2020-02-02 11:21:21 -05:00
.PP
The size of each margin, border, and padding can be set.
For the border, a linestyle and radius can be set.
.SS Spacing
.PP
2023-03-27 12:45:44 -04:00
Widgets that can pack more then one child widget (currently box and listview)
have the \fB \fC spacing\fR property. This property sets the distance between the packed
widgets (both horizontally and vertically).
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2022-04-05 18:04:30 -04:00
┌───────────────────────────────────────┐
│ ┌────────┐ s ┌────────┐ s ┌────────┐ │
│ │ child │ p │ child │ p │ child │ │
│ │ │ a │ │ a │ │ │
│ │ │ c │ │ c │ │ │
│ │ │ i │ │ i │ │ │
│ │ │ n │ │ n │ │ │
│ └────────┘ g └────────┘ g └────────┘ │
└───────────────────────────────────────┘
2020-02-02 11:21:21 -05:00
2017-07-24 03:57:53 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.SS Advanced box packing
.PP
2023-03-27 12:45:44 -04:00
More dynamic spacing can be achieved by adding dummy widgets, for example to
make one widget centered:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2022-04-05 18:04:30 -04:00
┌────────────────────────────────────────────────────┐
│ ┌───────────────┐ ┌────────┐ ┌───────────────┐ │
│ │ dummy │ │ child │ │ dummy │ │
│ │ expand: true; │ │ │ │ expand: true; │ │
│ │ │ │ │ │ │ │
│ │ │ │ │ │ │ │
│ │ │ │ │ │ │ │
│ └───────────────┘ └────────┘ └───────────────┘ │
└────────────────────────────────────────────────────┘
2020-02-02 11:21:21 -05:00
2017-07-24 03:57:53 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2023-03-27 12:45:44 -04:00
If both dummy widgets are set to expand, \fB \fC child\fR will be centered. Depending on
the \fB \fC expand\fR flag of child the remaining space will be equally divided between
both dummy and child widget (expand enabled), or both dummy widgets (expand
disabled).
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SH Debugging
2020-02-02 11:21:21 -05:00
.PP
2017-08-13 14:31:46 -04:00
To get debug information from the parser, run rofi like:
2020-02-02 11:21:21 -05:00
.PP
.RS
2017-07-25 02:13:07 -04:00
.nf
2022-10-22 05:03:11 -04:00
G_MESSAGES_DEBUG=Parser rofi -show run
2019-04-16 06:56:28 -04:00
2017-07-25 02:13:07 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2023-03-27 12:45:44 -04:00
Syntax errors are shown in a popup and printed out to command line with the
above command.
2020-02-02 11:21:21 -05:00
.PP
2017-07-25 02:13:07 -04:00
To see the elements queried during running, run:
2020-02-02 11:21:21 -05:00
.PP
.RS
2017-07-25 02:13:07 -04:00
.nf
2022-10-22 05:03:11 -04:00
G_MESSAGES_DEBUG=Theme rofi -show run
2019-04-16 06:56:28 -04:00
2017-07-25 02:13:07 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2023-03-27 12:45:44 -04:00
To test minor changes, part of the theme can be passed on the command line, for
example to set it to full-screen:
2020-02-02 11:21:21 -05:00
.PP
.RS
2017-07-25 02:13:07 -04:00
.nf
2022-10-22 05:03:11 -04:00
rofi -theme-str 'window { fullscreen:true;}' -show run
2019-04-16 06:56:28 -04:00
2017-07-25 02:13:07 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2021-12-17 13:04:02 -05:00
.PP
Another syntax to modify theme properties is:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
rofi -theme+window+fullscreen true -show run
2021-12-17 13:04:02 -05:00
.fi
.RE
2020-02-02 11:21:21 -05:00
.PP
2017-08-13 14:31:46 -04:00
To print the current theme, run:
2019-12-14 04:59:10 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
rofi -dump-theme
2020-02-02 11:21:21 -05:00
2017-07-25 02:13:07 -04:00
.fi
2020-02-02 11:21:21 -05:00
.RE
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.SH Media support
.PP
Parts of the theme can be conditionally loaded, like the CSS \fB \fC @media\fR option.
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
@media ( min-width: 120 ) {
2019-12-25 17:10:46 -05:00
}
2020-02-02 11:21:21 -05:00
2019-12-25 17:10:46 -05:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
2019-12-25 17:10:46 -05:00
It supports the following keys as constraint:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC min-width\fR : load when width is bigger or equal then value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC max-width\fR : load when width is smaller then value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC min-height\fR : load when height is bigger or equal then value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC max-height\fR : load when height is smaller then value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC min-aspect-ratio\fR load when aspect ratio is over value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC max-aspect-ratio\fR : load when aspect ratio is under value.
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC monitor-id\fR : The monitor id, see rofi -help for id's.
2022-07-15 17:28:57 -04:00
.IP \(bu 2
\fB \fC enabled\fR : Boolean option to enable. Supports environment variable.
2020-02-02 11:21:21 -05:00
2021-06-15 14:10:04 -04:00
.RE
2020-09-11 11:55:09 -04:00
.PP
2023-03-27 12:45:44 -04:00
@media takes an integer number or a fraction, for integer number \fB \fC px\fR can be
added.
2020-09-11 12:10:49 -04:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
@media ( min-width: 120 px ) {
2020-09-11 12:10:49 -04:00
}
.fi
.RE
2020-09-11 02:36:07 -04:00
2022-07-15 17:28:57 -04:00
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
@media ( enabled: env(DO_LIGHT, false ) {
2022-07-15 17:28:57 -04:00
}
.fi
.RE
2023-01-22 06:54:45 -05:00
.SH Conflicting constraints
.PP
It is possible to define conflicting constraints in the theme. These conflicts
are not explicitly reported. The most common example is forcing a specific
window size, for example by enabling full-screen mode, having number of lines
set in the listview and having the listview expand to available space. There is
clearly a conflict in these 3 constraints. In this case, listview will not
limit to the number of lines, but tries to fill the available space. It is up
to the theme designer to make sure the theme handles this correctly.
2021-06-08 14:23:14 -04:00
.SH Font Parsing
.PP
Rofi uses pango
2023-01-22 06:54:45 -05:00
\[ la]https://pango.gnome.org/\[ ra] for font rendering. The font should
be specified in a format that pango understands. This normally is the font name
followed by the font size. For example:
2021-06-08 14:23:14 -04:00
.PP
.RS
.nf
mono 18
.fi
.RE
.PP
Or
.PP
.RS
.nf
FontAwesome 22
.fi
.RE
2023-01-14 06:44:55 -05:00
.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 \fC axis\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"
2022-07-16 07:33:13 -04:00
.SH Icon Handling
.PP
Rofi supports 3 ways of specifying an icon:
.RS
.IP \(bu 2
Filename
.IP \(bu 2
2022-10-22 05:03:11 -04:00
icon-name, this is looked up via the icon-theme.
2022-07-16 07:33:13 -04:00
.IP \(bu 2
Markup String. It renders a string as an icon.
.RE
.PP
For the first two options, GdkPixbuf is used to open and render the icons.
This in general gives support for most required image formats.
For the string option it uses Pango to render the string. The string needs to
start with a \fB \fC <span\fR tag, that allows you to set color and font.
.PP
Markup string:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
echo -en "testing\\ 0icon\\ x1f<span color='red'>⏻</span>" | ./rofi -dmenu
2022-07-16 07:33:13 -04:00
.fi
.RE
.PP
Getting supported icon formats:
.PP
.RS
.nf
2022-10-22 05:03:11 -04:00
G_MESSAGES_DEBUG=Helpers.IconFetcher rofi
2022-07-16 07:33:13 -04:00
.fi
.RE
.PP
This uses the debug framework and prints out a list of supported image file
extensions.
2020-02-02 11:21:21 -05:00
.SH Multiple file handling
.PP
2023-03-27 12:45:44 -04:00
The rasi file format offers two methods of including other files. This can be
used to modify existing themes, or have multiple variations on a theme.
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
import: Import and parse a second file.
.IP \(bu 2
theme: Discard theme, and load file as a fresh theme.
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2019-12-29 11:30:53 -05:00
Syntax:
2020-01-02 06:00:44 -05:00
2020-02-02 11:21:21 -05:00
.PP
.RS
.nf
2019-12-29 11:30:53 -05:00
@import "myfile"
@theme "mytheme"
2020-02-02 11:21:21 -05:00
2019-12-29 11:30:53 -05:00
.fi
2020-02-02 11:21:21 -05:00
.RE
.PP
The specified file can either by \fI name\fP , \fI filename\fP ,\fI full path\fP \& .
.PP
2019-12-29 11:30:53 -05:00
If a filename is provided, it will try to resolve it in the following order:
2021-06-15 14:10:04 -04:00
.RS
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2023-08-15 13:16:26 -04:00
If path is absolute and file exists, it will open the file. This includes expansion of '~' or '~user'
2023-08-15 13:12:14 -04:00
.IP \(bu 2
2023-08-15 13:16:26 -04:00
On an \fB \fC @import\fR or \fB \fC @theme\fR it looks in the directory of the file that tried to include it.
2023-08-15 13:12:14 -04:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC ${XDG_CONFIG_HOME}/rofi/themes/\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC ${XDG_CONFIG_HOME}/rofi/\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
2022-10-22 05:03:11 -04:00
\fB \fC ${XDG_DATA_HOME}/rofi/themes/\fR
2020-02-02 11:21:21 -05:00
.IP \(bu 2
\fB \fC ${INSTALL PREFIX}/share/rofi/themes/\fR
2021-06-15 14:10:04 -04:00
.RE
2020-02-02 11:21:21 -05:00
.PP
2023-08-15 13:12:14 -04:00
A name is resolved (if it has no valid extension) as a filename by appending the \fB \fC \& .rasi\fR extension.
2020-02-02 11:21:21 -05:00
2022-12-31 07:15:01 -05:00
.SH Examples
2020-02-02 11:21:21 -05:00
.PP
2023-03-27 12:45:44 -04:00
Several examples are installed together with \fB rofi\fP \& . These can be found in
\fB \fC {datadir}/rofi/themes/\fR , where \fB \fC {datadir}\fR is the install path of \fB rofi\fP
data. When installed using a package manager, this is usually: \fB \fC /usr/share/\fR \& .
2020-02-02 11:21:21 -05:00
.SH SEE ALSO
.PP
2022-10-22 05:03:11 -04:00
rofi(1), rofi-script(5), rofi-theme-selector(1)