10 lines
207 B
Bash
10 lines
207 B
Bash
export LS_OPTIONS='--color=auto'
|
|
eval "`dircolors`"
|
|
alias ls='ls $LS_OPTIONS'
|
|
alias ll='ls $LS_OPTIONS -l'
|
|
alias l='ls $LS_OPTIONS -lA'
|
|
|
|
if shopt -q login_shell; then
|
|
echo -en "\033]0;$(hostname -f)\a"
|
|
fi
|