Advertisement
LinuxScripts

Atom & Subl install script (aptitude-like systems)

Feb 26th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.88 KB | None | 0 0
  1. # Installing Atom code editor
  2. ______________________________________________ Atom ______________________________________________
  3.  
  4. #!/bin/bash
  5.  
  6. wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -
  7. sudo sh -c 'echo "deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
  8. sudo apt-get update
  9. sudo apt-get install atom
  10.  
  11. # Installing Sublime text code editor
  12. ______________________________________________ Sublime ______________________________________________
  13.  
  14. #!/bin/bash
  15.  
  16. wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
  17. sudo apt-get install apt-transport-https
  18. echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
  19. sudo apt-get update
  20. sudo apt-get install sublime-text
  21.  
  22. # P.s.
  23. # It was two different scripts :O
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement