-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 -p "Web Search: " | sed 's/^/\"/g; s/$/\"/g' | xargs firefox --search` |