Advertisement
Templario_7777

Ubuntu 22 Install zsh & PowerLevel10K

Aug 10th, 2022
1,061
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.86 KB | None | 0 0
  1. ### INSTALL ZSH ###
  2. sudo apt install curl
  3. sudo apt install zsh
  4.  
  5. zsh --version
  6.  
  7. ## Set ZSH as Default Terminal ##
  8. chsh -s $(which zsh)
  9.  
  10. echo $SHELL
  11.     **/usr/bin/zsh
  12.  
  13. ### INNSTALL OH MY ZSH ###
  14.  
  15. sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  16. sudo apt-get install fonts-powerline
  17.  
  18.  
  19. ### INSTALL POWER LEVEL 10K ###
  20.  
  21. git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
  22.  
  23. https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/Meslo/M/Regular/complete/Meslo%20LG%20M%20Regular%20Nerd%20Font%20Complete%20Windows%20Compatible.ttf
  24.  
  25. nano ~/.zshrc
  26. ZSH_THEME="powerlevel10k/powerlevel10k"
  27.  
  28.  
  29. ## LSD LS ICONS ###
  30.  
  31. https://github.com/Peltoche/lsd/releases/download/0.22.0/lsd_0.22.0_arm64.deb
  32. sudo dpkg -i lsd_0.20.1_amd64.deb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement