Add .fluxbox/keys.
[dotfiles-framework.git] / src / .bashrc.d / nobeep
1 # turn off terminal beep in X
2 if [ $TERM == "xterm" ] && [ -n "$DISPLAY" ]
3     then
4     xset b off
5 fi
6
7 # turn of terminal beeps in the console, unless connecting via SSH
8 if [ -z "$SSH_CLIENT" ]; then
9     if [ ! -z "$TERM" ]; then
10         setterm -blength 0
11     fi
12 fi