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.

153 lines
4.7 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
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. sudo apt update -y
  7. sudo 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. cd "$HOME/repos/shell" || exit 1
  52. make depcheck
  53. make compile
  54. make install
  55. make configure
  56. }
  57. meetings() {
  58. mkdir -p "$HOME/repos"
  59. # install skype
  60. curl https://go.skype.com/skypeforlinux-64.deb -LJo "$HOME/repos/skypeforlinux.deb"
  61. sudo apt install "$HOME/repos/skypeforlinux.deb" -y
  62. # install zoom
  63. curl https://zoom.us/client/latest/zoom_amd64.deb -LJo "$HOME/repos/zoomus.deb"
  64. sudo apt install "$HOME/repos/zoomus.deb" -y
  65. # install mt
  66. sudo curl -LJ https://github.com/junikimm717/mt/releases/download/33627ab/mt -o /usr/local/bin/mt
  67. sudo chmod +x /usr/local/bin/mt
  68. }
  69. dotfiles() {
  70. echo "Adding zsh and tmux configs"
  71. # zsh plugins
  72. sudo apt install -y zsh tmux shellcheck fzf
  73. sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  74. git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting"
  75. # dotfiles
  76. if ! test -d "$DIR/dots"; then
  77. echo "$DIR/dots folder not found.";
  78. exit 1;
  79. fi
  80. cp "$DIR/dots/zshrc" "$HOME/.zshrc"
  81. cp "$DIR/dots/tmux.conf" "$HOME/.tmux.conf"
  82. mkdir -p "$HOME/.local/bin" || exit 1
  83. cp -r "$DIR/scripts/." "$HOME/.local/bin/" || exit 1
  84. }
  85. neovim() {
  86. # install neovim
  87. curl https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.deb -LJo "$HOME/repos/nvim-linux64.deb" || exit 1
  88. sudo apt install "$HOME/repos/nvim-linux64.deb" -y || exit 1
  89. sudo npm install -g tree-sitter-cli
  90. git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim || exit 1
  91. git clone https://git.junickim.me/junikimm717/nvim2023 ~/.config/nvim || exit 1
  92. nvim -c PackerSync -c 'sleep 10' -c qa --headless
  93. echo "sleeping to compile"
  94. nvim -c 'sleep 60' -c qa --headless
  95. }
  96. neovim_fonts() {
  97. mkdir -p "$HOME/.local/share/fonts/UM"
  98. cd "$HOME/.local/share/fonts/UM" || exit 1
  99. curl -LJO https://github.com/ryanoasis/nerd-fonts/releases/download/v2.3.3/UbuntuMono.zip || exit 1
  100. unzip UbuntuMono.zip || exit 1
  101. fc-cache -rv || exit 1
  102. }
  103. competitiveprogramming() {
  104. echo "CP Compilers..."
  105. sudo apt install clang clang-tools-extra
  106. cd "$HOME" || exit 1;
  107. git clone https://git.junickim.me/junikimm717/linuxcp "$HOME/cp"
  108. }
  109. case "$1" in
  110. ssh|s)
  111. (dependencies && sysinfo && dotfiles && neovim) || exit 1
  112. ;;
  113. graphical|g)
  114. (dependencies && sysinfo && browsers && dotfiles && neovim && neovim_fonts && popshell) || exit 1
  115. ;;
  116. full|f)
  117. (dependencies && sysinfo && browsers && torbrowser && meetings && dotfiles && neovim && neovim_fonts && popshell) || exit 1
  118. ;;
  119. cp|c)
  120. (dependencies && sysinfo && browsers && dotfiles && neovim && neovim_fonts && competitiveprogramming && popshell) || exit 1
  121. ;;
  122. *)
  123. echo "First Argument should be one of ssh, graphical, full, or cp"
  124. ;;
  125. esac
  126. cat <<EOF
  127. Stuff to do:
  128. - Reboot to make all changes active
  129. - Copy over the mt config files
  130. EOF