mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-15 05:08:04 +01:00
9 lines
140 B
Bash
9 lines
140 B
Bash
PATH=$HOME/.local/bin:$PATH
|
|
|
|
# Allow custom things to be put to ~/.xcustom
|
|
if [ -f ~/.xcustom ]; then
|
|
. ~/.xcustom
|
|
fi
|
|
|
|
# vim: set ft=sh
|