You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
3.8 KiB

2 years ago
  1. #!/bin/sh
  2. DIR="$(realpath "$(dirname "$0")")"
  3. # script must start at home directory
  4. cd "$HOME" || exit 1;
  5. dependencies() {
  6. apt update -y
  7. apt install -y make curl sudo git zip unzip || exit 1
  8. if ! (type sudo 2>&1) > /dev/null; then
  9. echo "sudo is not installed.";
  10. exit 1
  11. fi
  12. echo "Updating APT and adding PPA's"
  13. curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
  14. sudo apt update -y || exit 1
  15. sudo apt install -y nodejs golang cargo tmux g++ gcc || exit 1
  16. }
  17. sysinfo() {
  18. echo "Dylan Araps scripts"
  19. cd "$HOME" || exit 1;
  20. mkdir -p repos
  21. git clone https://github.com/dylanaraps/pfetch "$HOME/repos/pfetch"
  22. git clone https://github.com/dylanaraps/neofetch "$HOME/repos/neofetch"
  23. git clone https://github.com/dylanaraps/fff "$HOME/repos/fff"
  24. cd "$HOME/repos/pfetch" || exit 1;
  25. sudo make install || exit 2;
  26. cd "$HOME" || exit 1;
  27. cd "$HOME/repos/neofetch" || exit 1;
  28. sudo make install || exit 2;
  29. cd "$HOME" || exit 1;
  30. cd "$HOME/repos/fff" || exit 1;
  31. sudo make install || exit 2;
  32. cd "$HOME" || exit 1;
  33. }
  34. browsers() {
  35. sudo apt remove -y firefox
  36. sudo snap remove firefox
  37. # install brave
  38. sudo apt install apt-transport-https -y
  39. sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
  40. echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
  41. sudo apt update -y
  42. sudo apt install brave-browser -y
  43. }
  44. torbrowser() {
  45. sudo apt install -y torbrowser-launcher
  46. }
  47. popshell() {
  48. mkdir -p "$HOME/repos"
  49. sudo apt install git node-typescript make -y
  50. git clone https://github.com/pop-os/shell.git "$HOME/repos/shell"
  51. }
  52. meetings() {
  53. mkdir -p "$HOME/repos"
  54. # install skype
  55. curl https://go.skype.com/skypeforlinux-64.deb -LJo "$HOME/repos/skypeforlinux.deb"
  56. sudo apt install "$HOME/repos/skypeforlinux.deb" -y
  57. # install zoom
  58. curl https://zoom.us/client/latest/zoom_amd64.deb -LJo "$HOME/repos/zoomus.deb"
  59. sudo apt install "$HOME/repos/zoomus.deb" -y
  60. # install mt
  61. sudo curl -LJ https://github.com/junikimm717/mt/releases/download/33627ab/mt -o /usr/local/bin/mt
  62. sudo chmod +x /usr/local/bin/mt
  63. }
  64. dotfiles() {
  65. echo "Adding zsh and tmux configs"
  66. # zsh plugins
  67. sudo apt install -y zsh
  68. sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  69. git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting"
  70. # dotfiles
  71. if ! test -d "$DIR/dots"; then
  72. echo "$DIR/dots folder not found.";
  73. exit 1;
  74. fi
  75. cp "$DIR/dots/zshrc" "$HOME/.zshrc"
  76. cp "$DIR/dots/tmux.conf" "$HOME/.tmux.conf"
  77. }
  78. neovim() {
  79. # install neovim
  80. curl https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.deb -LJo "$HOME/repos/nvim-linux64.deb" || exit 1
  81. sudo apt install "$HOME/repos/nvim-linux64.deb" -y || exit 1
  82. git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim || exit 1
  83. git clone https://git.junickim.me/junikimm717/nvim2023 ~/.config/nvim || exit 1
  84. nvim -c PackerSync -c 'sleep 10' -c qa --headless
  85. echo "sleeping to compile"
  86. nvim -c 'sleep 40' -c qa --headless
  87. }
  88. competitiveprogramming() {
  89. echo "CP Compilers..."
  90. sudo apt install clang clang-tools-extra
  91. cd "$HOME" || exit 1;
  92. git clone https://git.junickim.me/junikimm717/linuxcp "$HOME/cp"
  93. }
  94. #(dependencies && sysinfo && browsers && torbrowser && meetings && dotfiles && neovim) || exit 1
  95. (dependencies && sysinfo && dotfiles && neovim) || exit 1
  96. cat <<EOF
  97. Stuff to do:
  98. - Install pop-shell (make local-install)
  99. - Settle brave key stuff
  100. - Copy over the mt config files
  101. EOF