Use XDG_CONFIG_HOME variables instead of hard-coding ~/.config
This commit is contained in:
parent
00ec029348
commit
6cda7a213e
1 changed files with 4 additions and 4 deletions
|
@ -49,9 +49,9 @@ if [ -f /etc/locale.conf ]
|
||||||
then
|
then
|
||||||
. /etc/locale.conf
|
. /etc/locale.conf
|
||||||
fi
|
fi
|
||||||
if [ -f "$HOME/.config/locale.conf" ]
|
if [ -f "${XDG_CONFIG_DIR:-$HOME/.config}/locale.conf" ]
|
||||||
then
|
then
|
||||||
. "$HOME/.config/locale.conf"
|
. "${XDG_CONFIG_DIR:-$HOME/.config}/locale.conf"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Other exports.
|
# Other exports.
|
||||||
|
@ -198,9 +198,9 @@ then
|
||||||
ssh-add "$HOME/.ssh/id_ed25519"
|
ssh-add "$HOME/.ssh/id_ed25519"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -r "$HOME/.bashrc.local" ]
|
if [ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bashrc.local" ]
|
||||||
then
|
then
|
||||||
. "$HOME/.bashrc.local"
|
. "${XDG_CONFIG_HOME:-$HOME/.config}/bashrc.local"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
usermotd () {
|
usermotd () {
|
||||||
|
|
Loading…
Add table
Reference in a new issue