19 lines
292 B
Plaintext
19 lines
292 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if grep -F ".local/bin" <<< "$PATH"; then
|
||
|
true
|
||
|
else
|
||
|
PATH="$HOME/.local/bin:$PATH"
|
||
|
fi
|
||
|
|
||
|
export PATH
|
||
|
|
||
|
if [ -d "$HOME/.xinitrc.d" ]; then
|
||
|
for FILE in "$HOME/.xinitrc.d"/*; do
|
||
|
[ -x "$FILE" ] && "$FILE" &
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
|
||
|
# The line below is placed by the package selection script.
|