7 lines
206 B
Bash
7 lines
206 B
Bash
## PATH:
|
|
# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
|
|
# personal utilities and helper commands.
|
|
PATH="${HOME}/usr/bin:${PATH}"
|
|
export PATH
|
|
|
|
systemctl --user import-environment PATH
|