dotfiles/home/bashrc

20 lines
321 B
Bash
Raw Normal View History

2021-08-20 14:37:24 -04:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
export PS1='\e[1m\e[38;5;63m[\e[38;5;68m\u@\H \e[38;5;15m\w\e[38;5;63m]$\e[m '
# aliases:
2022-01-23 09:35:35 -05:00
source ~/.aliases
2021-08-20 14:37:24 -04:00
# reload with .
alias .="source ~/.bashrc"
if [ -z "${DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
exec startx
fi