Switch to GNU stow
This commit is contained in:
parent
a2605c4254
commit
d34cecb27e
137 changed files with 39244 additions and 141 deletions
23
home/.bashrc
Normal file
23
home/.bashrc
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
#
|
||||
# ~/.bashrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
# Load files from rc.d
|
||||
if [ -d $XDG_CONFIG_HOME/shell/rc.d ]; then
|
||||
for file in $XDG_CONFIG_HOME/shell/rc.d/*.sh; do
|
||||
source $file
|
||||
done
|
||||
fi
|
||||
|
||||
# Load files from bashrc.d
|
||||
if [ -d $XDG_CONFIG_HOME/shell/bashrc.d ]; then
|
||||
for file in $XDG_CONFIG_HOME/shell/bashrc.d/*.bash; do
|
||||
source $file
|
||||
done
|
||||
fi
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
PS1='[\u@\h \W]\$ '
|
||||
Loading…
Add table
Add a link
Reference in a new issue