Add npm binaries to path

This commit is contained in:
ItsDrike 2023-07-23 00:14:23 +02:00
parent 47af19d900
commit 0025d52ab9
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -14,6 +14,10 @@ if [ -d "$HOME/.local/share/pyenv/shims" ]; then
PATH+=":$HOME/.local/share/pyenv/shims"
fi
if [ -d "$HOME/.local/share/npm/bin" ]; then
PATH+=":$HOME/.local/share/npm/bin"
fi
# Start graphical session automatically on tty1 if Hyprland or startx is available
if [ "$(tty)" = "/dev/tty1" ] && [ "$UID" != 0 ]; then
if command -v Hyprland >/dev/null; then