2025-02-11 23:03:13 -03:00
|
|
|
# fuzzel
|
|
|
|
|
|
|
|
> 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:
|
|
|
|
|
2025-03-09 01:35:31 +02:00
|
|
|
`fuzzel {{[-d|--dmenu]}}`
|
2025-02-11 23:03:13 -03:00
|
|
|
|
|
|
|
- Display a menu of the output of the `ls` command:
|
|
|
|
|
2025-03-15 23:32:36 +02:00
|
|
|
`{{ls}} | fuzzel {{[-d|--dmenu]}}`
|
2025-02-11 23:03:13 -03:00
|
|
|
|
|
|
|
- Display a menu with custom items separated by a new line (`\n`):
|
|
|
|
|
2025-03-15 23:32:36 +02:00
|
|
|
`echo -e "{{red}}\n{{green}}\n{{blue}}" | fuzzel {{[-d|--dmenu]}}`
|
2025-02-11 23:03:13 -03:00
|
|
|
|
|
|
|
- Let the user choose between multiple items and save the selected one to a file:
|
|
|
|
|
2025-03-15 23:32:36 +02:00
|
|
|
`echo -e "{{red}}\n{{green}}\n{{blue}}" | fuzzel {{[-d|--dmenu]}} > {{color.txt}}`
|
2025-02-11 23:03:13 -03:00
|
|
|
|
|
|
|
- Reset apps usage count (default cache directory: `$XDG_CACHE_HOME/fuzzel`):
|
|
|
|
|
|
|
|
`rm -v $HOME/.cache/fuzzel`
|
|
|
|
|
|
|
|
- Launch `fuzzel` on a specific monitor, see `wlr-randr` or `swaymsg -t get_outputs`:
|
|
|
|
|
2025-03-15 23:32:36 +02:00
|
|
|
`fuzzel {{[-o|--output]}} "{{DP-1}}"`
|
2025-02-11 23:03:13 -03:00
|
|
|
|
|
|
|
- Use `fuzzel` to do an online search:
|
|
|
|
|
2025-03-15 23:32:36 +02:00
|
|
|
`fuzzel {{[-d|--dmenu]}} {{[-l|--lines]}} 0 --placeholder "{{Type your search}}" | sed 's/^/\"/g;s/$/\"/g' | xargs firefox --search`
|