setup_system.sh 711 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/bin/bash
  2. #the bare essentials
  3. apt install -y vim
  4. ~/dotfiles/setup-vim.sh
  5. apt install -y git
  6. #window manager
  7. apt install -y sway
  8. apt install -y swaybg
  9. mkdir -p .config/sway
  10. ln -s ~/dotfiles/devuan_setup/config/sway/config ~/.config/sway/config
  11. rm -rf ~/.profile
  12. ln -s ~/dotfiles/devuan_setup/.profile ~/.profile
  13. #let there be sound!
  14. apt install -y alsa-utils
  15. #launcher
  16. apt install -y wofi
  17. mkdir -p .config/wofi
  18. ln -s ~/dotfiles/devuan_setup/config/wofi/style.css ~/.config/wofi/style.css
  19. #wifi and bluetooth
  20. apt install -y connman-gtk
  21. #actual programs
  22. apt install -y firefox-esr
  23. apt install -y inkscape
  24. apt install -y flameshot
  25. apt install -y thunar
  26. apt install -y docker
  27. apt install -y docker-compose