Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. #Repositories
  4. ##Sublime-Text
  5. curl -O https://download.sublimetext.com/sublimehq-pub.gpg && \
  6. pacman-key --add sublimehq-pub.gpg && \
  7. pacman-key --lsign-key 8A8F901A && \
  8. rm sublimehq-pub.gpg
  9.  
  10. ##Stable sublime-text repo
  11. echo -e "\n[sublime-text]\nServer = https://download.sublimetext.com/arch/stable/x86_64" | \
  12. tee -a /etc/pacman.conf
  13.  
  14. #Packages
  15. ## Upgrade system
  16. pacman -Syu --noconfirm
  17.  
  18. ## Base and base-devel
  19. pacman -S base base-devel git go python python-pip --noconfirm
  20. ## AUR helper
  21. cd /tmp && \
  22. git clone https://aur.archlinux.org/yay.git && \
  23. cd yay && \
  24. makepkg -si
  25. ## Graphical env
  26. pacman -S xorg-server xorg-xinit xf86-video-intel --noconfirm
  27. pacman -S i3 termite --noconfirm
  28. ## Sound
  29. pacman -S alsa-firmware alsa-lib alsa-plugins alsa-utils pulseaudio pulseaudio-alsa --noconfirm
  30. ## Archives
  31. pacman -S zip unzip atool unrar --noconfirm
  32. ## Networking
  33. pacman -S wget net-tools networkmanager network-manager-applet wireless_tools wpa_supplicant wpa_actiond --noconfirm
  34. # Work
  35. ## Editors
  36. pacman -S sublime-text vim --noconfirm
  37. ## Stack
  38. pacman -S docker docker-compose --noconfirm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement