Created
June 16, 2022 02:31
-
-
Save makvoid/ce18426ba02776ad901339739e541f41 to your computer and use it in GitHub Desktop.
Installing extra requirements for the Device
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download and install NVM | |
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash | |
# Load NVM | |
$ export NVM_DIR="$HOME/.nvm" | |
$ [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
$ [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" | |
# Install Node | |
$ nvm install 14.19.1 | |
# Finally, install unclutter | |
$ sudo apt install -y unclutter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment