10 lines
272 B
Plaintext
10 lines
272 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# sourced at boot by ~/.xinitrc and most display managers
|
||
|
|
||
|
# xdg standard configuration location (needed by some applications)
|
||
|
export XDG_CONFIG_HOME="$HOME/.config"
|
||
|
|
||
|
# add ~/.local/bin to the PATH (application executables)
|
||
|
export PATH="$HOME/.local/bin:$PATH"
|