videopc-bootstrap.sh 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. #!/bin/bash
  2. # ASSUMED STATE OF TARGET SYSTEM:
  3. # - internet access
  4. # - root user login
  5. # - ~10 GB of free disk space
  6. # working 1.) base 2.) linux/kernel packages
  7. # install git, vim, stow, opendoas and (base-devel minus sudo)
  8. echo -e "\e[0;30;34mInstalling some initial packages ...\e[0m"
  9. pacman -Sy --noconfirm --needed git vim opendoas autoconf automake binutils bison fakeroot file findutils flex gawk gcc gettext grep groff gzip libtool m4 make pacman patch pkgconf sed texinfo which libxft stow || { echo -e "\e[0;30;101m Error at script start:\n\nAre you sure you're running this as the root user?\n\t(Tip: run 'whoami' to check)\n\nAre you sure you have an internet connection?\n\t(Tip: run 'ip a' to check)\n\e[0m"; exit 1; }
  10. pacman_error_exit() {
  11. echo -e "\e[0;30;101m Error: Pacman command was not successfull. Exiting ...\e[0m"
  12. exit 1
  13. }
  14. compile_error_exit() {
  15. echo -e "\e[0;30;101m Error: Compilation command was not successfull. Exiting ...\e[0m"
  16. exit 1
  17. }
  18. cd_into() {
  19. cd "$1" || cd_error_exit "$1"
  20. }
  21. cd_error_exit() {
  22. echo -e "\e[0;30;46m Current working directory: \e[0m"
  23. pwd
  24. echo -e "\e[0;30;101m Error: Could not change into '$1'. Exiting ...\e[0m"
  25. exit 1
  26. }
  27. setup_temporary_doas() {
  28. echo -e "\e[0;30;34mSetting up temporary doas config ...\e[0m"
  29. printf "permit nopass :wheel
  30. permit nopass root as %s\n" "$username" > /etc/doas.conf
  31. chown -c root:root /etc/doas.conf
  32. chmod -c 0400 /etc/doas.conf
  33. }
  34. create_videopc_user() {
  35. if ls /home/ | grep -q "^$username$"; then
  36. return
  37. fi
  38. echo -e "\e[0;30;34mCreating videopc user ...\e[0m"
  39. username="videopc"
  40. useradd -m -g users -G wheel "$username"
  41. while true; do
  42. passwd "$username" && break
  43. done
  44. }
  45. set_rtmp_key() {
  46. echo -e "\e[0;30;34mSetting rtmp key... \e[0m"
  47. while true; do
  48. echo -e "\e[0;30;42m Enter in your RTMP key \e[0m"
  49. read -rp " >>> " rtmp_key
  50. echo "$rtmp_key" > /etc/videopc_rtmp_key
  51. [ -n "$rtmp_key" ] && break
  52. done
  53. }
  54. set_api_key() {
  55. echo -e "\e[0;30;34mSetting api key... \e[0m"
  56. while true; do
  57. echo -e "\e[0;30;42m Enter in your API key \e[0m"
  58. read -rp " >>> " api_key
  59. echo "$api_key" > /etc/videopc_api_key
  60. [ -n "$api_key" ] && break
  61. done
  62. }
  63. add_user_to_groups() {
  64. if ! groups "$username" | grep "input" | grep -q "video"; then
  65. echo -e "\e[0;30;34mAdding $username to video and input groups ... \e[0m"
  66. usermod -aG video "$username"
  67. usermod -aG input "$username"
  68. fi
  69. }
  70. make_user_owner_of_HOME_and_mnt_dirs() {
  71. echo -e "\e[0;30;34mChanging ownership of /home/$username + /mnt ...\e[0m"
  72. chown -R "$username":users /home/"$username"/
  73. chown -R "$username":users /mnt/
  74. }
  75. create_videopc_user
  76. # create ~/ directories
  77. echo -e "\e[0;30;34mCreating ~/ directories ...\e[0m"
  78. mkdir -vp /home/"$username"/dox /home/"$username"/pix /home/"$username"/dl
  79. mkdir -vp /home/"$username"/vids /home/"$username"/mus
  80. mkdir -vp /home/"$username"/.local/bin /home/"$username"/.config
  81. mkdir -vp /home/"$username"/.local/share /home/"$username"/.local/src
  82. echo -e "\e[0;30;34mChanging ownership of /home/$username ...\e[0m"
  83. chown -R "$username":users /home/"$username"/* /home/"$username"/.*
  84. setup_temporary_doas
  85. add_user_to_groups
  86. # add xdg-repo
  87. if ! grep -q "^\s*\[xdg-repo\]\s*$" /etc/pacman.conf; then
  88. echo -e "\e[0;30;34mAdding Noah's xdg-repo ...\e[0m"
  89. pacman-key --recv-keys 7FA7BB604F2A4346 --keyserver keyserver.ubuntu.com
  90. pacman-key --lsign-key 7FA7BB604F2A4346
  91. echo "[xdg-repo]
  92. Server = https://git.noahvogt.com/noah/\$repo/raw/master/\$arch" >> /etc/pacman.conf
  93. fi
  94. # add chaotic-aur
  95. if ! grep -q "^\s*\[chaotic-aur\]\s*$" /etc/pacman.conf; then
  96. echo -e "\e[0;30;34mAdding the chaotic aur repo ...\e[0m"
  97. pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com
  98. pacman-key --lsign-key 3056513887B78AEB
  99. pacman -U --noconfirm --needed 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst'
  100. pacman -U --noconfirm --needed 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst'
  101. echo "[chaotic-aur]
  102. Include = /etc/pacman.d/chaotic-mirrorlist" >> /etc/pacman.conf
  103. fi
  104. # sync all pkg db's
  105. pacman -Syyy
  106. # install aur helper (paru)
  107. if ! pacman -Q | grep -q paru; then
  108. echo -e "\e[0;30;34mInstalling AUR helper (paru) ...\e[0m"
  109. cd_into /home/"$username"/.local/src
  110. pacman -S --noconfirm --needed bat devtools || pacman_error_exit
  111. curl -sO https://aur.archlinux.org/cgit/aur.git/snapshot/paru-bin.tar.gz &&
  112. tar xvf paru-bin.tar.gz
  113. cd_into /home/"$username" && chown -R "$username":wheel /home/"$username"/.local/src/ && cd_into .local/src
  114. cd_into paru-bin
  115. while true; do
  116. # TODO: split command into makepkg and pacman -U, only loop 2nd one
  117. doas -u "$username" makepkg --noconfirm -si && break
  118. done
  119. rm /home/"$username"/.local/src/paru-bin.tar.gz
  120. fi
  121. # fetch + apply dotfiles
  122. if [ ! -d /home/"$username"/.local/src/dotfiles ]; then
  123. echo -e "\e[0;30;34mFetching dotfiles ...\e[0m"
  124. cd_into /home/"$username"/.local/src
  125. while true; do
  126. git clone https://git.noahvogt.com/noah/videopc-infra.git && break
  127. done
  128. else
  129. echo -e "\e[0;30;34mUpdating dotfiles ...\e[0m"
  130. cd_into /home/"$username"/.local/src/dotfiles
  131. while true; do
  132. git pull && break
  133. done
  134. fi
  135. mv /home/"$username"/.local/src/videopc-infra /home/"$username"/.local/src/dotfiles
  136. cd_into /home/"$username"/.local/src/dotfiles
  137. echo -e "\e[0;30;34mApplying dotfiles ...\e[0m"
  138. doas -u "$username" /home/"$username"/.local/src/dotfiles/apply-dotfiles
  139. set_rtmp_key
  140. set_api_key
  141. # download packages from the official repos
  142. # TODO: remove uneeded pkg's
  143. echo -e "\e[0;30;34mInstalling packages from repos ...\e[0m"
  144. pacman -S --noconfirm --needed xf86-video-vesa xf86-video-fbdev neovim ffmpeg arandr python pulseaudio-alsa neofetch mpv xf86-video-amdgpu xf86-video-intel xf86-video-nouveau dust coreutils curl webp-pixbuf-loader wireplumber hyprland kitty opendoas-sudo adwaita-fake-cursors greetd-agreety openssh uvicorn python-fastapi || pacman_error_exit
  145. # install aur packages
  146. echo -e "\e[0;30;34mInstalling packages from AUR ...\e[0m"
  147. doas -u "$username" paru -S --noconfirm --needed doasedit mediamtx-bin || pacman_error_exit
  148. # enable mediamtx service
  149. echo -e "\e[0;30;34mEnabling mediamtx daemon ...\e[0m"
  150. systemctl enable mediamtx
  151. make_user_owner_of_HOME_and_mnt_dirs
  152. # setup autologin
  153. echo -e "\e[0;30;34mSetting up Autologin ...\e[0m"
  154. systemctl enable greetd
  155. if ! grep -q "\[initial_session\]" /etc/greetd/config.toml; then
  156. echo '[initial_session]
  157. command = "Hyprland"
  158. user = "videopc"' >> /etc/greetd/config.toml
  159. fi
  160. # enable sshd daemon
  161. echo -e "\e[0;30;34mEnabling sshd daemon ...\e[0m"
  162. systemctl enable sshd
  163. # ~ cleanup
  164. echo -e "\e[0;30;34mCleaning up \$HOME ...\e[0m"
  165. for f in /home/"$username"/.bash*; do
  166. [ -f "$f" ] && rm "$f"
  167. done
  168. for f in /home/"$username"/.less*; do
  169. [ -f "$f" ] && rm "$f"
  170. done