Move scripts to .local/bin
Moved all personal scripts to ~/.local/bin to be systemd file hierarchy compliant, as well as XDG compliant. Since they are not configuration options they don't have anything to do in .config directories. Also, it's just easier to find than the previous .config/scripts/bin.
This commit is contained in:
parent
5970e2f13d
commit
df45a08c6c
5 changed files with 1 additions and 1 deletions
|
@ -1,2 +1,2 @@
|
|||
# put personal scripts on the PATH to be callable
|
||||
export PATH="$(du $XDG_CONFIG_HOME/scripts/bin | cut -f2 | tr '\n' ':')$PATH"
|
||||
export PATH="$(du $HOME/.local/bin | cut -f2 | tr '\n' ':')$PATH"
|
||||
|
|
Loading…
Reference in a new issue