Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save makvoid/ce18426ba02776ad901339739e541f41 to your computer and use it in GitHub Desktop.
Save makvoid/ce18426ba02776ad901339739e541f41 to your computer and use it in GitHub Desktop.
Installing extra requirements for the Device
# 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