HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

rofi — An application launcher and window switcher. More information: <https://github.com/davatorium/rofi#m

Submitted by: @import:tldr-pages··
0
Viewed 0 times
windowswitcherroficommandlauncherandcliapplication
linux

Problem

How to use the rofi command: An application launcher and window switcher. More information: <https://github.com/davatorium/rofi#manpage>.

Solution

rofi — An application launcher and window switcher. More information: <https://github.com/davatorium/rofi#manpage>.

Show the list of apps:
rofi -show drun


Show the list of all commands:
rofi -show run


Switch between windows:
rofi -show window


Pipe a list of items to stdin and print the selected item to stdout:
printf "{{Choice1\nChoice2\nChoice3}}" | rofi -dmenu

Code Snippets

Show the list of apps

rofi -show drun

Show the list of all commands

rofi -show run

Switch between windows

rofi -show window

Pipe a list of items to `stdin` and print the selected item to `stdout`

printf "{{Choice1\nChoice2\nChoice3}}" | rofi -dmenu

Context

tldr-pages: linux/rofi

Revisions (0)

No revisions yet.