diff --git a/functions.sh b/functions.sh index feed7e8..4d3fde7 100644 --- a/functions.sh +++ b/functions.sh @@ -488,3 +488,10 @@ EOF fi } + +turnoffbeep() { + line='set bell-style none' + file=~/.inputrc + grep -qxF "$line" "$file" || echo "$line" >> "$file" +} +#EOF