10 lines
272 B
Bash
10 lines
272 B
Bash
#!/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"
|