setup_system.sh 790 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #automount external drives
  22. apt install -y udiskie
  23. #actual programs
  24. apt install -y firefox-esr
  25. apt install -y inkscape
  26. apt install -y flameshot
  27. apt install -y thunar
  28. apt remove -y thunar-volman
  29. apt install -y docker
  30. apt install -y docker-compose