16 lines
295 B
Bash
16 lines
295 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"
|
|
export EDITOR="nvim"
|
|
export TERMINAL="st"
|
|
export SHELL="/bin/bash"
|
|
|
|
mpd >/dev/null 2>&1 &
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
|
|
exec startx
|
|
fi
|