Modified version of Luke Smith LARBS.
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.

233 lines
11 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. #!/bin/sh
  2. # Luke's Auto Rice Boostrapping Script (LARBS)
  3. # by Luke Smith <luke@lukesmith.xyz>
  4. # License: GNU GPLv3
  5. ### OPTIONS AND VARIABLES ###
  6. while getopts ":a:r:b:p:h" o; do case "${o}" in
  7. h) printf "Optional arguments for custom use:\\n -r: Dotfiles repository (local file or url)\\n -p: Dependencies and programs csv (local file or url)\\n -a: AUR helper (must have pacman-like syntax)\\n -h: Show this message\\n" && exit ;;
  8. r) dotfilesrepo=${OPTARG} && git ls-remote "$dotfilesrepo" || exit ;;
  9. b) repobranch=${OPTARG} ;;
  10. p) progsfile=${OPTARG} ;;
  11. a) aurhelper=${OPTARG} ;;
  12. *) printf "Invalid option: -%s\\n" "$OPTARG" && exit ;;
  13. esac done
  14. [ -z "$dotfilesrepo" ] && dotfilesrepo="https://github.com/tiynger/.dotfiles.git"
  15. [ -z "$progsfile" ] && progsfile="https://raw.githubusercontent.com/tiynger/LARBS/master/progs.csv"
  16. [ -z "$aurhelper" ] && aurhelper="yay"
  17. [ -z "$repobranch" ] && repobranch="master"
  18. ### FUNCTIONS ###
  19. distro="arch"
  20. installpkg(){ pacman --noconfirm --needed -S "$1" >/dev/null 2>&1 ;}
  21. grepseq="\"^[PGA]*,\""
  22. error() { clear; printf "ERROR:\\n%s\\n" "$1"; exit;}
  23. welcomemsg() { \
  24. dialog --title "Welcome!" --msgbox "Welcome to Luke's Auto-Rice Bootstrapping Script!\\n\\nThis script will automatically install a fully-featured Linux desktop, which I use as my main machine.\\n\\n-Luke" 10 60
  25. }
  26. getuserandpass() { \
  27. # Prompts user for new username an password.
  28. name=$(dialog --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit
  29. while ! echo "$name" | grep "^[a-z_][a-z0-9_-]*$" >/dev/null 2>&1; do
  30. name=$(dialog --no-cancel --inputbox "Username not valid. Give a username beginning with a letter, with only lowercase letters, - or _." 10 60 3>&1 1>&2 2>&3 3>&1)
  31. done
  32. pass1=$(dialog --no-cancel --passwordbox "Enter a password for that user." 10 60 3>&1 1>&2 2>&3 3>&1)
  33. pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
  34. while ! [ "$pass1" = "$pass2" ]; do
  35. unset pass2
  36. pass1=$(dialog --no-cancel --passwordbox "Passwords do not match.\\n\\nEnter password again." 10 60 3>&1 1>&2 2>&3 3>&1)
  37. pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
  38. done ;}
  39. usercheck() { \
  40. ! (id -u "$name" >/dev/null) 2>&1 ||
  41. dialog --colors --title "WARNING!" --yes-label "CONTINUE" --no-label "No wait..." --yesno "The user \`$name\` already exists on this system. LARBS can install for a user already existing, but it will \\Zboverwrite\\Zn any conflicting settings/dotfiles on the user account.\\n\\nLARBS will \\Zbnot\\Zn overwrite your user files, documents, videos, etc., so don't worry about that, but only click <CONTINUE> if you don't mind your settings being overwritten.\\n\\nNote also that LARBS will change $name's password to the one you just gave." 14 70
  42. }
  43. preinstallmsg() { \
  44. dialog --title "Let's get this party started!" --yes-label "Let's go!" --no-label "No, nevermind!" --yesno "The rest of the installation will now be totally automated, so you can sit back and relax.\\n\\nIt will take some time, but when done, you can relax even more with your complete system.\\n\\nNow just press <Let's go!> and the system will begin installation!" 13 60 || { clear; exit; }
  45. }
  46. adduserandpass() { \
  47. # Adds user `$name` with password $pass1.
  48. dialog --infobox "Adding user \"$name\"..." 4 50
  49. useradd -m -g wheel -s /bin/bash "$name" >/dev/null 2>&1 ||
  50. usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name"
  51. repodir="/home/$name/.local/src"; mkdir -p "$repodir"; chown -R "$name":wheel "$repodir"
  52. echo "$name:$pass1" | chpasswd
  53. unset pass1 pass2 ;}
  54. refreshkeys() { \
  55. dialog --infobox "Refreshing Arch Keyring..." 4 40
  56. pacman --noconfirm -Sy archlinux-keyring >/dev/null 2>&1
  57. }
  58. newperms() { # Set special sudoers settings for install (or after).
  59. sed -i "/#LARBS/d" /etc/sudoers
  60. echo "$* #LARBS" >> /etc/sudoers ;}
  61. manualinstall() { # Installs $1 manually if not installed. Used only for AUR helper here.
  62. [ -f "/usr/bin/$1" ] || (
  63. dialog --infobox "Installing \"$1\", an AUR helper..." 4 50
  64. cd /tmp || exit
  65. rm -rf /tmp/"$1"*
  66. curl -sO https://aur.archlinux.org/cgit/aur.git/snapshot/"$1".tar.gz &&
  67. sudo -u "$name" tar -xvf "$1".tar.gz >/dev/null 2>&1 &&
  68. cd "$1" &&
  69. sudo -u "$name" makepkg --noconfirm -si >/dev/null 2>&1
  70. cd /tmp || return) ;}
  71. maininstall() { # Installs all needed programs from main repo.
  72. dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 5 70
  73. installpkg "$1"
  74. }
  75. gitmakeinstall() {
  76. progname="$(basename "$1")"
  77. dir="$repodir/$progname"
  78. dialog --title "LARBS Installation" --infobox "Installing \`$progname\` ($n of $total) via \`git\` and \`make\`. $(basename "$1") $2" 5 70
  79. sudo -u "$name" git clone --depth 1 "$1" "$dir" >/dev/null 2>&1 || { cd "$dir" || return ; sudo -u "$name" git pull --force origin master;}
  80. cd "$dir" || exit
  81. make >/dev/null 2>&1
  82. make install >/dev/null 2>&1
  83. cd /tmp || return ;}
  84. aurinstall() { \
  85. dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 5 70
  86. echo "$aurinstalled" | grep "^$1$" >/dev/null 2>&1 && return
  87. sudo -u "$name" $aurhelper -S --noconfirm "$1" >/dev/null 2>&1
  88. }
  89. pipinstall() { \
  90. dialog --title "LARBS Installation" --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 5 70
  91. command -v pip || installpkg python-pip >/dev/null 2>&1
  92. yes | pip install "$1"
  93. }
  94. installationloop() { \
  95. ([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' | eval grep "$grepseq" > /tmp/progs.csv
  96. total=$(wc -l < /tmp/progs.csv)
  97. aurinstalled=$(pacman -Qqm)
  98. while IFS=, read -r tag program comment; do
  99. n=$((n+1))
  100. echo "$comment" | grep "^\".*\"$" >/dev/null 2>&1 && comment="$(echo "$comment" | sed "s/\(^\"\|\"$\)//g")"
  101. case "$tag" in
  102. "A") aurinstall "$program" "$comment" ;;
  103. "G") gitmakeinstall "$program" "$comment" ;;
  104. "P") pipinstall "$program" "$comment" ;;
  105. *) maininstall "$program" "$comment" ;;
  106. esac
  107. done < /tmp/progs.csv ;}
  108. putgitrepo() { # Downloads a gitrepo $1 and places the files in $2 only overwriting conflicts
  109. dialog --infobox "Downloading and installing config files..." 4 60
  110. [ -z "$3" ] && branch="master" || branch="$repobranch"
  111. dir=$(mktemp -d)
  112. [ ! -d "$2" ] && mkdir -p "$2"
  113. chown -R "$name":wheel "$dir" "$2"
  114. sudo -u "$name" git clone -b "$branch" --depth 1 "$1" "$dir" >/dev/null 2>&1
  115. sudo -u "$name" cp -rfT "$dir" "$2"
  116. }
  117. systembeepoff() { dialog --infobox "Getting rid of that retarded error beep sound..." 10 50
  118. rmmod pcspkr
  119. echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf ;}
  120. finalize(){ \
  121. dialog --infobox "Preparing welcome message..." 4 50
  122. echo "exec_always --no-startup-id notify-send -i ~/.local/share/larbs/larbs.png 'Welcome to LARBS:' 'Press Super+F1 for the manual.' -t 10000" >> "/home/$name/.config/i3/config"
  123. dialog --title "All done!" --msgbox "Congrats! Provided there were no hidden errors, the script completed successfully and all the programs and configuration files should be in place.\\n\\nTo run the new graphical environment, log out and log back in as your new user, then run the command \"startx\" to start the graphical environment (it will start automatically in tty1).\\n\\n.t Luke" 12 80
  124. }
  125. ### THE ACTUAL SCRIPT ###
  126. ### This is how everything happens in an intuitive format and order.
  127. # Check if user is root on Arch distro. Install dialog.
  128. installpkg dialog || error "Are you sure you're running this as the root user and have an internet connection?"
  129. # Welcome user and pick dotfiles.
  130. welcomemsg || error "User exited."
  131. # Get and verify username and password.
  132. getuserandpass || error "User exited."
  133. # Give warning if user already exists.
  134. usercheck || error "User exited."
  135. # Last chance for user to back out before install.
  136. preinstallmsg || error "User exited."
  137. ### The rest of the script requires no user input.
  138. adduserandpass || error "Error adding username and/or password."
  139. # Refresh Arch keyrings.
  140. # refreshkeys || error "Error automatically refreshing Arch keyring. Consider doing so manually."
  141. dialog --title "LARBS Installation" --infobox "Installing \`basedevel\` and \`git\` for installing other software required for the installation of other programs." 5 70
  142. installpkg curl
  143. installpkg base-devel
  144. installpkg git
  145. [ -f /etc/sudoers.pacnew ] && cp /etc/sudoers.pacnew /etc/sudoers # Just in case
  146. # Allow user to run sudo without password. Since AUR programs must be installed
  147. # in a fakeroot environment, this is required for all builds with AUR.
  148. newperms "%wheel ALL=(ALL) NOPASSWD: ALL"
  149. # Make pacman and yay colorful and adds eye candy on the progress bar because why not.
  150. grep "^Color" /etc/pacman.conf >/dev/null || sed -i "s/^#Color$/Color/" /etc/pacman.conf
  151. grep "ILoveCandy" /etc/pacman.conf >/dev/null || sed -i "/#VerbosePkgLists/a ILoveCandy" /etc/pacman.conf
  152. # Use all cores for compilation.
  153. sed -i "s/-j2/-j$(nproc)/;s/^#MAKEFLAGS/MAKEFLAGS/" /etc/makepkg.conf
  154. manualinstall $aurhelper || error "Failed to install AUR helper."
  155. # The command that does all the installing. Reads the progs.csv file and
  156. # installs each needed program the way required. Be sure to run this only after
  157. # the user has been created and has priviledges to run sudo without a password
  158. # and all build dependencies are installed.
  159. installationloop
  160. dialog --title "LARBS Installation" --infobox "Finally, installing \`libxft-bgra\` to enable color emoji in suckless software without crashes." 5 70
  161. yes | sudo -u "$name" $aurhelper -S libxft-bgra >/dev/null 2>&1
  162. # Install the dotfiles in the user's home directory
  163. putgitrepo "$dotfilesrepo" "/home/$name" "$repobranch"
  164. rm -f "/home/$name/README.md" "/home/$name/LICENSE" "/home/$name/.gitignore"
  165. rm -rf "/home/$name/.git"
  166. # Restart pulseaudio to make it work
  167. [ -f /usr/bin/pulseaudio ] && resetpulse
  168. # Setup NetworkManager
  169. systemctl enable NetworkManager
  170. # Most important command! Get rid of the beep!
  171. systembeepoff
  172. # Make zsh the default shell for the user.
  173. sed -i "s/^$name:\(.*\):\/bin\/.*/$name:\1:\/bin\/zsh/" /etc/passwd
  174. # dbus UUID must be generated for Artix runit.
  175. dbus-uuidgen > /var/lib/dbus/machine-id
  176. # Let LARBS know the WM it's supposed to run.
  177. chown -R "$name":wheel "/home/$name/.local"
  178. # This line, overwriting the `newperms` command above will allow the user to run
  179. # serveral important commands, `shutdown`, `reboot`, updating, etc. without a password.
  180. newperms "%wheel ALL=(ALL) ALL #LARBS
  181. %wheel ALL=(ALL) NOPASSWD: /usr/bin/shutdown,/usr/bin/reboot,/usr/bin/systemctl suspend,/usr/bin/wifi-menu,/usr/bin/mount,/usr/bin/umount,/usr/bin/pacman -Syu,/usr/bin/pacman -Syyu,/usr/bin/packer -Syu,/usr/bin/packer -Syyu,/usr/bin/systemctl restart NetworkManager,/usr/bin/rc-service NetworkManager restart,/usr/bin/pacman -Syyu --noconfirm,/usr/bin/loadkeys,/usr/bin/yay,/usr/bin/pacman -Syyuw --noconfirm"
  182. # Last message! Install complete!
  183. finalize
  184. clear