How to Add ~/.local/bin to PATH?
Adding dirs to PATH gives easy access to your local scripts.
Define PATH variable
Put this in your ~/.profile or ~/.zprofile
# Adds ~/.local/bin to $PATH
and restart your wm
Now you can easily access your scripts from dmenu, terminal or anywhere.
#faqs #notes
Adding dirs to PATH gives easy access to your local scripts.
Define PATH variable
Put this in your ~/.profile or ~/.zprofile
# Adds ~/.local/bin to $PATH
export PATH="$PATH:$(du "$HOME/.local/bin" | cut -f2 | paste -sd ':')"
and restart your wm
Now you can easily access your scripts from dmenu, terminal or anywhere.
#faqs #notes