Commit aa5e9686 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix Linux term colour settings

Terminal colours were broken by moving from .profile to a dedicated
script that was sourced out-of-order.
parent a870fb47
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
. ~/.shell/lib/term-setup.sh
. ~/.shell/funcs
. ~/.shell/colours

# Automatically run terminal multiplexer on SSH connect
case $TERM in
+3 −0
Original line number Diff line number Diff line
${TERM_SETUP_LOADED-false} && return
export TERM_SETUP_LOADED=true

. ~/.shell/funcs
. ~/.shell/colours

# do no setup if TERM is not set or dumb
case ${TERM-unset} in
	unset) export TERM=dumb; return 0 ;;