commands.sh

fuzzel

linux

A Wayland-native application launcher and fuzzy finder, inspired by `rofi` and `dmenu`.

More info →

Options (4)

-d, --dmenuboolean

Run `fuzzel` in dmenu mode

Example: fuzzel {{[-d|--dmenu]}}
-v, --verboseboolean

Reset apps usage count (default cache directory: `$XDG_CACHE_HOME/fuzzel`)

Example: rm {{[-v|--verbose]}} $HOME/.cache/fuzzel
-o, --outputboolean

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

Example: fuzzel {{[-o|--output]}} "{{DP-1}}"
-l, --linesboolean

Use `fuzzel` to do an online search

Example: fuzzel {{[-d|--dmenu]}} {{[-l|--lines]}} 0 --placeholder "{{Type your search}}" | sed 's/^/\"/g;s/$/\"/g' | xargs firefox --search

Examples (8)

Run applications

Run `fuzzel` in dmenu mode

fuzzel [-d|--dmenu]

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

ls | fuzzel [-d|--dmenu]

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

echo -e "red\ngreen\nblue" | fuzzel [-d|--dmenu]

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

echo -e "red\ngreen\nblue" | fuzzel [-d|--dmenu] > color.txt

Reset apps usage count (default cache directory: `$XDG_CACHE_HOME/fuzzel`)

rm [-v|--verbose] $HOME/.cache/fuzzel

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

fuzzel [-o|--output] "DP-1"

Use `fuzzel` to do an online search

fuzzel [-d|--dmenu] [-l|--lines] 0 --placeholder "Type your search" | sed 's/^/\"/g;s/$/\"/g' | xargs firefox --search
made by @shridhargupta | data from tldr-pages