16 lines
245 B
Bash
16 lines
245 B
Bash
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
if
|
|
[ -f ~/.config/shell/aliases ]; then
|
|
. ~/.config/shell/aliases
|
|
fi
|
|
|
|
alias ls='ls --color=auto'
|
|
#PS1='[\u@\h \W]\$ '
|
|
PS1='== \W ⚙️ >>'
|