]> git.rmz.io Git - dotfiles.git/blob - zsh/lib/bell.zsh
nvim: enable other (non-scroll) animations again
[dotfiles.git] / zsh / lib / bell.zsh
1 # ring bell when any command is finished
2 # works best with urxvt.urgentOnBell: true
3
4 function bell {
5 echo -ne '\a'
6 }
7
8 autoload -U add-zsh-hook
9 add-zsh-hook precmd bell