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.

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