mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
11 lines
265 B
Text
11 lines
265 B
Text
|
# System-wide .bashrc file for interactive bash(1) shells.
|
||
|
if [ -z "$PS1" ]; then
|
||
|
return
|
||
|
fi
|
||
|
|
||
|
PS1='\h:\W \u\$ '
|
||
|
# Make bash check its window size after a process completes
|
||
|
shopt -s checkwinsize
|
||
|
|
||
|
[ -r "/etc/bashrc_$TERM_PROGRAM" ] && . "/etc/bashrc_$TERM_PROGRAM"
|