Skip to content

johncmunson/raspberry-pi-desktop-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

  1. (Need instructions here for booting from SSD)
  2. Install fish
    // INSTALL
    $ sudo apt install fish
    // MAKE FISH THE DEFAULT LOGIN SHELL AND INTERACTIVE SHELL
    $ chsh # enter password, then enter /usr/bin/fish
    $ chsh -s /usr/bin/fish
    // MAKE CONFIG
    touch ~/.config/fish/config.fish
    // REBOOT
    $ sudo reboot
    
  3. Install VSCode - might already be installed in newer OS's
    $ sudo apt update
    $ sudo apt install code
    
  4. Install vim
    $ sudo apt install vim
    
  5. Install or update git
    $ sudo apt install git
    
  6. Install n (the node version manager)
    $ curl -L https://git.io/n-install | bash
    Add the following line to `.config/fish/config.fish`...
    $ set -x N_PREFIX "$HOME/n"; set -x PATH "$N_PREFIX/bin" $PATH
    
  7. Setup github
    // CREATE DEFAULT SSH PUBLIC/PRIVATE KEYPAIR
    $ ssh-keygen
    Add id_rsa.pub to Github
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published