Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fuzzel: add page #15582

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions pages/linux/fuzzel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# fuzzel

> Dynamic Wayland-native menu.
> Fuzzel is a Wayland-native application launcher and fuzzy finder, inspired by rofi and dmenu.
> More information: <https://codeberg.org/dnkl/fuzzel>.

- Run applications:

`fuzzel`

- Run fuzzel in dmenu mode (`--dmenu` or `-d`):

`fuzzel --dmenu`

- Display a menu of the output of the `ls` command:

`{{ls}} | fuzzel -d`

- Display a menu with custom items separated by a new line (`\n`):

`echo -e "{{red}}\n{{green}}\n{{blue}}" | fuzzel -d`

- Let the user choose between multiple items and save the selected one to a file:

`echo -e "{{red}}\n{{green}}\n{{blue}}" | fuzzel -d > {{color.txt}}`

- Reset apps usage count, default directory `XDG_CACHE_HOME/fuzzel`:

`rm -v $HOME/.cache/fuzzel`

- Launch fuzzel on a specific monitor, see `wlr-randr` or `swaymsg -t get_outputs`:

`fuzzel -o "DP-1"`

- Use the fuzzel to do an online search:

`fuzzel -d -l 0 -p "> " --placeholder="Type your search" | sed 's/^/\"/g; s/$/\" /g' | xargs firefox --search`