Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lbonn/rofi
Rofi: A window switcher, run dialog and dmenu replacement - fork with wayland support
https://github.com/lbonn/rofi
Last synced: 6 days ago
JSON representation
Rofi: A window switcher, run dialog and dmenu replacement - fork with wayland support
- Host: GitHub
- URL: https://github.com/lbonn/rofi
- Owner: lbonn
- License: other
- Fork: true (davatorium/rofi)
- Created: 2017-01-09T19:07:31.000Z (almost 8 years ago)
- Default Branch: wayland
- Last Pushed: 2024-07-08T21:11:38.000Z (4 months ago)
- Last Synced: 2024-08-02T07:21:36.469Z (3 months ago)
- Language: C
- Homepage:
- Size: 28.3 MB
- Stars: 898
- Watchers: 15
- Forks: 36
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog
- Contributing: .github/CONTRIBUTING.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-hyprland - rofi-wayland
README
Rofi
A window switcher, Application launcher and dmenu replacement.
https://user-images.githubusercontent.com/84911063/139428874-fe182dd6-82c6-49b8-8da1-920ddda3d1ed.mp4
**This is a fork of [Rofi](https://github.com/davatorium/rofi) with added support for Wayland via the [layer shell protocol](https://github.com/swaywm/wlr-protocols).**
**For more information, see the [Wayland support section](#wayland-support)****Rofi** started as a clone of simpleswitcher, written by [Sean
Pringle](http://github.com/seanpringle/simpleswitcher) - a popup window
switcher roughly based on
[superswitcher](http://code.google.com/p/superswitcher/). Simpleswitcher laid
the foundations, and therefore Sean Pringle deserves most of the credit for
this tool. **Rofi** (renamed, as it lost the *simple* property) has been
extended with extra features, like an application launcher and ssh-launcher,
and can act as a drop-in dmenu replacement, making it a very versatile tool.**Rofi**, like dmenu, will provide the user with a textual list of options
where one or more can be selected.
This can either be running an application, selecting a window, or options
provided by an external script.### What is rofi not?
Rofi is not:
- A UI toolkit.
- A library to be used in other applications.
- An application that can support every possible use-case. It tries to be
generic enough to be usable by everybody.
- Specific functionality can be added using scripts or plugins, many exists.- Just a dmenu replacement. The dmenu functionality is a nice 'extra' to
**rofi**, not its main purpose.## Table of Contents
- [Features](#features)
- [Modes](#modes)
- [Manpages](#manpage)
- [Installation](#installation)
- [Quickstart](#quickstart)
- [Usage](#usage)
- [Configuration](#configuration)
- [Themes](#themes)
- [Screenshots](#screenshots)
- [Wiki](#wiki)## Features
Its main features are:
- Fully configurable keyboard navigation
- Type to filter
- Tokenized: type any word in any order to filter
- Case insensitive (togglable)
- Support for fuzzy-, regex-, prefix-, and glob-matching- UTF-8 enabled
- UTF-8-aware string collating
- International keyboard support (\`e -> è)- RTL language support
- Cairo drawing and Pango font rendering
- Built-in modes:
- Window switcher mode
- EWMH compatible WM
- Work arounds for i3,bspwm- Application launcher
- Desktop file application launcher
- SSH launcher mode
- File browser
- Combi mode, allowing several modes to be merged into one list
- History-based ordering — last 25 choices are ordered on top based on use
(optional)- Levenshtein distance or fzf like sorting of matches (optional)
- Drop-in dmenu replacement
- Many added improvements- Easily extensible using scripts and plugins
- Advanced Theming
## Modes
**Rofi** has several built-in modes implementing common use cases and can be
extended by scripts (either called from
**Rofi** or calling **Rofi**) or plugins.Below is a list of the different modes:
- **run**: launch applications from $PATH, with option to launch in terminal.
- **drun**: launch applications based on desktop files. It tries to be
compliant to the XDG standard.- **window**: Switch between windows on an EWMH compatible window manager.
- **ssh**: Connect to a remote host via ssh.
- **filebrowser**: A basic file-browser for opening files.
- **keys**: list internal keybindings.
- **script**: Write (limited) custom mode using simple scripts.
- **combi**: Combine multiple modes into one.
**Rofi** is known to work on Linux and BSD.
## Wayland support
### Build
Please follow the [meson build instructions](INSTALL.md#meson) to build this fork, as autotools builds are not yet supported.
Wayland support is enabled by default in this fork, along with X11/xcb.
rofi can also be built _without_ XCB:
meson build -Dxcb=disabled
### Usage
**Rofi** options an configurations are compatible with this fork. It should automatically select the xcb or wayland backend depending on the environment it is run on.
To force the use of the xcb backend (if enabled during build), the `-x11` option can be used:
rofi -x11 ...
### Missing features in Wayland mode
Due to the different architecture and available APIs in Wayland mode, some original rofi features are difficult or impossible to replicate
* `-normal-window` flag. Though it is also considered as a toy/deprecated feature in Upstream rofi. Not impossible but would require some work.
* `-monitor -n` for fine-grained selection of monitor to display rofi on
* some window locations parameters work partially, `x-offset` and `y-offset` are only working from screen edges
* fake transparency
* window mode on KWin which implements different protocols than the wlr familiy## Manpage
For more up to date information, please see the manpages. The other sections and links might have outdated information as they have relatively less maintainance than the manpages. So, if you come across any issues please consult manpages, [discussion from upstream rofi](https://github.com/davatorium/rofi/discussions) and [issue tracker](https://github.com/lbonn/rofi/issues?q=) before filing new issue.
- Manpages:
- [rofi](doc/rofi.1.markdown)
- [rofi-theme](doc/rofi-theme.5.markdown)
- [rofi-debugging](doc/rofi-debugging.5.markdown)
- [rofi-script](doc/rofi-script.5.markdown)
- [rofi-theme-selector](doc/rofi-theme-selector.1.markdown)
- [rofi-keys](doc/rofi-keys.5.markdown)
- [rofi-dmenu](doc/rofi-dmenu.5.markdown)## Installation
Please see the [installation guide](INSTALL.md) for instructions on how to
install **Rofi**.## Quickstart
### Usage
> **This section just gives a brief overview of the various options. To get the
> full set of options see the [manpages](#manpage) section above**#### Running rofi
To launch **rofi** directly in a certain mode, specify a mode with `rofi -show `.
To show the `run` dialog:```bash
rofi -show run
```Or get the options from a script:
```bash
~/my_script.sh | rofi -dmenu
```Specify an ordered, comma-separated list of modes to enable. Enabled modes can
be changed at runtime. Default key is `Ctrl+Tab`. If no modes are specified,
all configured modes will be enabled. To only show the `run` and `ssh`
launcher:```bash
rofi -modes "run,ssh" -show run
```The modes to combine in combi mode.
For syntax to `-combi-modes `, see `-modes`.
To get one merge view, of `window`,`run`, and `ssh`:```bash
rofi -show combi -combi-modes "window,run,ssh" -modes combi
```### Configuration
Generate a default configuration file
```bash
mkdir -p ~/.config/rofi
rofi -dump-config > ~/.config/rofi/config.rasi
```This creates a file called `config.rasi` in the `~/.config/rofi/` folder. You
can modify this file to set configuration settings and modify themes.
`config.rasi` is the file rofi looks to by default.Please see the [configuration guide](https://github.com/lbonn/rofi/blob/wayland/CONFIG.md) for a summary of configuration options. More detailed options are provided in the manpages.
### Themes
Please see the [themes manpages](https://github.com/lbonn/rofi/blob/wayland/doc/rofi-theme.5.markdown) for a detailed description.
The latest bundled themes can be found
[here](https://github.com/lbonn/rofi/tree/next/themes).## Screenshots
Rezlooks:
![screenshot](https://raw.githubusercontent.com/davatorium/rofi/next/releasenotes/1.6.0/icons.png)
Arthur:
![screenshot2](https://raw.githubusercontent.com/davatorium/rofi/next/releasenotes/1.6.0/icons2.png)
Default theme:
![default](https://raw.githubusercontent.com/davatorium/rofi/next/releasenotes/1.4.0/rofi-no-fzf.png)
## Wiki
| ❗ **The upstream rofi Wiki is currently unmaintained and might contain outdated data ** |
| --- |[Go to upstream rofi wiki](https://github.com/davatorium/rofi/wiki) .
### Contents
- [User scripts](https://github.com/davatorium/rofi/wiki/User-scripts)
- [Examples](https://github.com/davatorium/rofi/wiki#examples)
- [dmenu Specs](https://github.com/davatorium/rofi/wiki/dmenu_specs)
- [mode Specs](https://github.com/davatorium/rofi/wiki/mode-Specs)
- [F.A.Q.](https://github.com/davatorium/rofi/wiki/Frequently-Asked-Questions).
- [Script mode](https://github.com/davatorium/rofi/wiki/rfc-script-mode)
- [Creating an issue](https://github.com/davatorium/rofi/blob/master/.github/CONTRIBUTING.md)
- [Creating a Pull request](https://github.com/davatorium/rofi/wiki/Creating-a-pull-request)