bashrc: disable CTRL+S flow control

This commit is contained in:
Bill Niblock 2017-12-19 13:48:07 -05:00
parent 36bd876afd
commit 69b0e203a8

View file

@ -6,6 +6,8 @@
if [ -f /etc/bashrc ]; then if [ -f /etc/bashrc ]; then
. /etc/bashrc . /etc/bashrc
fi fi
# Disable CTRL+S flow control
stty -ixon
#=============================================================================== #===============================================================================
# Prompt # Prompt
#=============================================================================== #===============================================================================
@ -102,4 +104,5 @@ export HISTTIMEFORMAT="%s "
[ -n "$DESK_ENV" ] && source "$DESK_ENV" || true [ -n "$DESK_ENV" ] && source "$DESK_ENV" || true
# Yubikey support # Yubikey support
# eval "$(ssh-agent -s)" &> /dev/null
export SSH_AUTH_SOCK=$HOME/.yubiagent/sock export SSH_AUTH_SOCK=$HOME/.yubiagent/sock