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:
Marty Oehme 2019-05-23 11:20:11 +02:00
parent 5970e2f13d
commit df45a08c6c
5 changed files with 1 additions and 1 deletions

View file

@ -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"