diff options
| author | Benjamin Neff <benjamin@coding4coffee.ch> | 2023-12-01 17:09:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-01 17:09:48 +0100 |
| commit | 0a9d82780e20e24b6fafc5b2aaefedb0957986c9 (patch) | |
| tree | 97b08c7a8566bf06659803085e312079d5b55116 /plugins/bgnotify/README.md | |
| parent | b6afbbea3a6f41e4016e967da57b33872aff9944 (diff) | |
| download | zsh-0a9d82780e20e24b6fafc5b2aaefedb0957986c9.tar.gz zsh-0a9d82780e20e24b6fafc5b2aaefedb0957986c9.tar.bz2 zsh-0a9d82780e20e24b6fafc5b2aaefedb0957986c9.zip | |
feat(bgnotify): add option to disable terminal bell (#12077)
Diffstat (limited to 'plugins/bgnotify/README.md')
| -rw-r--r-- | plugins/bgnotify/README.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/bgnotify/README.md b/plugins/bgnotify/README.md index 6bbe3b302..33d529f15 100644 --- a/plugins/bgnotify/README.md +++ b/plugins/bgnotify/README.md @@ -35,12 +35,14 @@ Just add bgnotify to your plugins list in your `.zshrc` One can configure a few things: +- `bgnotify_bell` enabled or disables the terminal bell (default true) - `bgnotify_threshold` sets the notification threshold time (default 6 seconds) - `function bgnotify_formatted` lets you change the notification. You can for instance customize the message and pass in an icon. Use these by adding a function definition before the your call to source. Example: ```sh +bgnotify_bell=false ## disable terminal bell bgnotify_threshold=4 ## set your own notification threshold function bgnotify_formatted { |
