remove non ascii whitespaces
This commit is contained in:
parent
598a10bc28
commit
5a6d6c4d13
117 changed files with 1928 additions and 1928 deletions
|
@ -9,7 +9,7 @@ Rofi is a window switcher, run dialog, ssh-launcher and dmenu replacement that s
|
|||
|
||||
## Configuration
|
||||
There are two methods of setting configuration options:
|
||||
- Local configuration. Normally, depending on XDG, in `~/.config/rofi/config.rasi`.
|
||||
- Local configuration. Normally, depending on XDG, in `~/.config/rofi/config.rasi`.
|
||||
- Command line options:
|
||||
|
||||
```shell
|
||||
|
@ -26,13 +26,13 @@ configuration {
|
|||
@theme "solarized"
|
||||
```
|
||||
|
||||
To get a full list of options for `config.rasi` file run `rofi -dump-config` or `rofi -h`. You can write the output of the command directly to your configuration file while running `rofi -dump-config > ~/.config/rofi/config.rasi`.
|
||||
To get a full list of options for `config.rasi` file run `rofi -dump-config` or `rofi -h`. You can write the output of the command directly to your configuration file while running `rofi -dump-config > ~/.config/rofi/config.rasi`.
|
||||
|
||||
## Themes
|
||||
The easiest way to get started theming rofi is by modifying your existing theme.
|
||||
|
||||
Themes can be modified/tweaked by adding theming elements to the end of the
|
||||
config file. The default location of this file is `~/.config/rofi/config.rasi`, if the file does not exists, you can create it.
|
||||
config file. The default location of this file is `~/.config/rofi/config.rasi`, if the file does not exists, you can create it.
|
||||
|
||||
A basic config:
|
||||
```
|
||||
|
@ -46,11 +46,11 @@ configuration {
|
|||
/* Insert theme modifications after this */
|
||||
```
|
||||
|
||||
For example if we want to change the `Type to filter` text in the entry box we append the following:
|
||||
For example if we want to change the `Type to filter` text in the entry box we append the following:
|
||||
```css
|
||||
entry {
|
||||
placeholder: "Type here";
|
||||
}
|
||||
```
|
||||
|
||||
In the above section, `entry` indicates the widget, `placeholder` is the property we want to modify and we set it to the string `"Type here"`.
|
||||
In the above section, `entry` indicates the widget, `placeholder` is the property we want to modify and we set it to the string `"Type here"`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue