Rofi: A window switcher, application launcher and dmenu replacement
Go to file
Dave Davenport 43957321d4 [Test] meson build updates. 2021-06-15 12:45:02 +02:00
.github Update config.yml 2021-03-03 21:42:05 +01:00
Examples [Script] Add 'info' row option, that gets passed to ROFI_INFO environment. 2020-05-24 19:10:49 +02:00
config
data
doc
include
lexer
m4 Add lex version check. 2017-04-04 18:59:35 +02:00
pkgconfig
releasenotes
resources
script [Theme] Add direction support to linear-gradient. 2021-06-14 15:14:41 +02:00
source [Test] Fix the test. 2021-06-15 12:31:32 +02:00
subprojects submodules: Update libgwater 2021-01-20 15:32:29 +01:00
test [Test] meson build updates. 2021-06-15 12:45:02 +02:00
themes
.gitignore
.gitlab-ci.yml
.gitmodules changed ligbwater's url from git to https 2017-12-04 19:51:15 +01:00
.travis.yml
AUTHORS Update authors list with TonCherAmi 2021-06-08 20:26:41 +02:00
CODE_OF_CONDUCT.md
COPYING
Changelog Add ChangeLog and start working on release notes. 2020-11-22 11:30:59 +01:00
INSTALL.md [Configuration] Remove old configuration format. 2021-06-01 10:43:25 +02:00
Makefile.am Remove deprecated theme options 2021-06-08 22:44:15 +02:00
README.md [DOC] Update README to link all manpages and fora. 2021-06-08 23:16:01 +02:00
configure.ac
libgwater-xcb-nolibtool.mk
meson.build Remove deprecated theme options 2021-06-08 22:44:15 +02:00
meson_options.txt

README.md

Codacy Badge Build Status codecov.io Issues Forks Stars Downloads Coverity Forum Packages

A window switcher, Application launcher and dmenu replacement

Rofi started as a clone of simpleswitcher, written by Sean Pringle - a popup window switcher roughly based on 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.

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-, 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
    • Application launcher
    • Desktop file application launcher
    • SSH launcher mode
    • 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

Rofi has several built-in modi 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 modi:

  • 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.
  • file-browser: A basic file-browser for opening files.
  • keys: list internal keybindings.
  • script: Write (limited) custom mode using simple scripts.
  • combi: Combine multiple modi into one.

Rofi is known to work on Linux and BSD.

Screenshots

screenshot screenshot2 default

Manpage

For more up to date information, please see the manpages:

Installation

Please see the installation guide for instructions on how to install Rofi.

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.