apparently scp fails without this noninteractive thing because of neofetch

This commit is contained in:
JesseBot 2022-11-08 10:52:37 +01:00
parent fef9de63af
commit 2c1c78c9c0

11
.bashrc
View file

@ -9,11 +9,12 @@
# I hate bells a lot
set bell-style none
# If not running interactively, don't do anything
# case $- in
# *i*) ;;
# *) return;;
# esac
# fixes "scp: Received message too long 169564991" error
# If not running interactively, don't do anything, no outputs
case $- in
*i*) ;;
*) return;;
esac
# default editor
export EDITOR=vim