From 87c607c100f53af88b6ea9006c59f7d97974abcb Mon Sep 17 00:00:00 2001 From: The_miro Date: Mon, 31 Mar 2025 10:38:19 +0200 Subject: [PATCH] added nodejs installer to install file --- hyprland-eww-wofi-installer.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hyprland-eww-wofi-installer.sh b/hyprland-eww-wofi-installer.sh index 181bafa..c594f94 100644 --- a/hyprland-eww-wofi-installer.sh +++ b/hyprland-eww-wofi-installer.sh @@ -47,6 +47,21 @@ ln -s ~/Dotfiles/desktopenvs/hyprland/alacritty ~/.config/ cp ~/Dotfiles/desktopenvs/hyprland/hypr-usr/* ~/.config cp ~/Dotfiles/nvim/cyberqueer.vim ~/.local/share/nvim/site/plugged/vim-airline-themes/autoload/airline/themes/ +# Download and install nvm: +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash + +# in lieu of restarting the shell +\. "$HOME/.nvm/nvm.sh" + +# Download and install Node.js: +nvm install 22 + +# Verify the Node.js version: +node -v # Should print "v22.14.0". +nvm current # Should print "v22.14.0". + +# Verify npm version: +npm -v # Should print "10.9.2". #zsh setup echo "Setting up zsh"