Rofi: A window switcher, application launcher and dmenu replacement
Go to file
a1346054 c62137f8ab
Simple maintenance improvements (#1370)
* rofi moved to libera.chat

* unify some theme headers and whitespace

* consistently use the same hashbang for bash

* improve obsolete way of testing equality

see https://github.com/koalaman/shellcheck/wiki/SC2268 for explanation

* use consistent function definitions in bash scripts

* remove duplicated author and fix whitespace

* quote all variables in scripts

fixes many warnings identified through shellcheck

* fix whitespace in scripts

* fix whitespace in non-source files

* fix spelling in non-source files

* fix whitespace and indentation in source files

* fix spelling in source files
2021-08-14 13:03:16 +02:00
.github Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
Examples Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
config Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
data Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
doc Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
include Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
lexer Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
m4 Add lex version check. 2017-04-04 18:59:35 +02:00
pkgconfig Make -plugin-path commandline flag be read before loading plugins 2017-10-16 18:25:16 +02:00
releasenotes Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
resources [Config] Load default config file in at startup 2021-07-10 00:25:20 +02:00
script Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
source Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
subprojects submodules: Update libgwater 2021-01-20 15:32:29 +01:00
test Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
themes Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
.gitignore Add support for additional field on script entries `meta` (#1052) 2020-02-01 13:49:11 +01:00
.gitlab-ci.yml Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
.gitmodules changed ligbwater's url from git to https 2017-12-04 19:51:15 +01:00
.travis.yml Add cursor property (#1313) 2021-05-23 00:17:27 +02:00
AUTHORS Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#608) 2017-06-17 13:20:34 +02:00
COPYING Update copyright dates. 2020-01-01 12:23:12 +01:00
Changelog Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
INSTALL.md [Configuration] Remove old configuration format. 2021-06-01 10:43:25 +02:00
Makefile.am Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
README.md [DOC] Update README to link all manpages and fora. 2021-06-08 23:16:01 +02:00
configure.ac Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
libgwater-xcb-nolibtool.mk Simple maintenance improvements (#1370) 2021-08-14 13:03:16 +02:00
meson.build [Test] Fix meson test, remove gif dep from meson. 2021-06-15 12:55:03 +02:00
meson_options.txt [Timings] Move into new debug system. (#961) 2019-05-11 20:57:18 +02:00

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.