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.

249 lines
12 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
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/voidrice.git"
  15. [ -z "$progsfile" ] && progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/progs.csv"
  16. [ -z "$aurhelper" ] && aurhelper="yay"
  17. [ -z "$repobranch" ] && repobranch="master"
  18. ### FUNCTIONS ###
  19. if type xbps-install >/dev/null 2>&1; then
  20. installpkg(){ xbps-install -y "$1" >/dev/null 2>&1 ;}
  21. grepseq="\"^[PGV]*,\""
  22. elif type apt >/dev/null 2>&1; then
  23. installpkg(){ apt-get install -y "$1" >/dev/null 2>&1 ;}
  24. grepseq="\"^[PGU]*,\""
  25. else
  26. distro="arch"
  27. installpkg(){ pacman --noconfirm --needed -S "$1" >/dev/null 2>&1 ;}
  28. grepseq="\"^[PGA]*,\""
  29. fi
  30. error() { clear; printf "ERROR:\\n%s\\n" "$1"; exit;}
  31. welcomemsg() { \
  32. 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
  33. }
  34. selectdotfiles() { \
  35. edition="$(dialog --title "Select LARBS version." --menu "Select which version of LARBS you wish to have as default:" 10 70 2 dwm "The version of LARBS using suckless's dwm." i3 "The classic version of LARBS using i3." custom "If you are supplying commandline options for LARBS." 3>&1 1>&2 2>&3 3>&1)" || error "User exited."
  36. }
  37. getuserandpass() { \
  38. # Prompts user for new username an password.
  39. name=$(dialog --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit
  40. while ! echo "$name" | grep "^[a-z_][a-z0-9_-]*$" >/dev/null 2>&1; do
  41. 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)
  42. done
  43. pass1=$(dialog --no-cancel --passwordbox "Enter a password for that user." 10 60 3>&1 1>&2 2>&3 3>&1)
  44. pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
  45. while ! [ "$pass1" = "$pass2" ]; do
  46. unset pass2
  47. pass1=$(dialog --no-cancel --passwordbox "Passwords do not match.\\n\\nEnter password again." 10 60 3>&1 1>&2 2>&3 3>&1)
  48. pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
  49. done ;}
  50. usercheck() { \
  51. ! (id -u "$name" >/dev/null) 2>&1 ||
  52. 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
  53. }
  54. preinstallmsg() { \
  55. 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; }
  56. }
  57. adduserandpass() { \
  58. # Adds user `$name` with password $pass1.
  59. dialog --infobox "Adding user \"$name\"..." 4 50
  60. useradd -m -g wheel -s /bin/bash "$name" >/dev/null 2>&1 ||
  61. usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name"
  62. repodir="/home/$name/.local/src"; mkdir -p "$repodir"; chown -R "$name":wheel "$repodir"
  63. echo "$name:$pass1" | chpasswd
  64. unset pass1 pass2 ;}
  65. refreshkeys() { \
  66. dialog --infobox "Refreshing Arch Keyring..." 4 40
  67. pacman --noconfirm -Sy archlinux-keyring >/dev/null 2>&1
  68. }
  69. newperms() { # Set special sudoers settings for install (or after).
  70. sed -i "/#LARBS/d" /etc/sudoers
  71. echo "$* #LARBS" >> /etc/sudoers ;}
  72. manualinstall() { # Installs $1 manually if not installed. Used only for AUR helper here.
  73. [ -f "/usr/bin/$1" ] || (
  74. dialog --infobox "Installing \"$1\", an AUR helper..." 4 50
  75. cd /tmp || exit
  76. rm -rf /tmp/"$1"*
  77. curl -sO https://aur.archlinux.org/cgit/aur.git/snapshot/"$1".tar.gz &&
  78. sudo -u "$name" tar -xvf "$1".tar.gz >/dev/null 2>&1 &&
  79. cd "$1" &&
  80. sudo -u "$name" makepkg --noconfirm -si >/dev/null 2>&1
  81. cd /tmp || return) ;}
  82. maininstall() { # Installs all needed programs from main repo.
  83. dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 5 70
  84. installpkg "$1"
  85. }
  86. gitmakeinstall() {
  87. progname="$(basename "$1")"
  88. dir="$repodir/$progname"
  89. dialog --title "LARBS Installation" --infobox "Installing \`$progname\` ($n of $total) via \`git\` and \`make\`. $(basename "$1") $2" 5 70
  90. sudo -u "$name" git clone --depth 1 "$1" "$dir" >/dev/null 2>&1 || { cd "$dir" || return ; sudo -u "$name" git pull --force origin master;}
  91. cd "$dir" || exit
  92. make >/dev/null 2>&1
  93. make install >/dev/null 2>&1
  94. cd /tmp || return ;}
  95. aurinstall() { \
  96. dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 5 70
  97. echo "$aurinstalled" | grep "^$1$" >/dev/null 2>&1 && return
  98. sudo -u "$name" $aurhelper -S --noconfirm "$1" >/dev/null 2>&1
  99. }
  100. pipinstall() { \
  101. dialog --title "LARBS Installation" --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 5 70
  102. command -v pip || installpkg python-pip >/dev/null 2>&1
  103. yes | pip install "$1"
  104. }
  105. installationloop() { \
  106. ([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' | eval grep "$grepseq" > /tmp/progs.csv
  107. total=$(wc -l < /tmp/progs.csv)
  108. aurinstalled=$(pacman -Qqm)
  109. while IFS=, read -r tag program comment; do
  110. n=$((n+1))
  111. echo "$comment" | grep "^\".*\"$" >/dev/null 2>&1 && comment="$(echo "$comment" | sed "s/\(^\"\|\"$\)//g")"
  112. case "$tag" in
  113. "A") aurinstall "$program" "$comment" ;;
  114. "G") gitmakeinstall "$program" "$comment" ;;
  115. "P") pipinstall "$program" "$comment" ;;
  116. *) maininstall "$program" "$comment" ;;
  117. esac
  118. done < /tmp/progs.csv ;}
  119. putgitrepo() { # Downloads a gitrepo $1 and places the files in $2 only overwriting conflicts
  120. dialog --infobox "Downloading and installing config files..." 4 60
  121. [ -z "$3" ] && branch="master" || branch="$repobranch"
  122. dir=$(mktemp -d)
  123. [ ! -d "$2" ] && mkdir -p "$2"
  124. chown -R "$name":wheel "$dir" "$2"
  125. sudo -u "$name" git clone -b "$branch" --depth 1 "$1" "$dir" >/dev/null 2>&1
  126. sudo -u "$name" cp -rfT "$dir" "$2"
  127. }
  128. systembeepoff() { dialog --infobox "Getting rid of that retarded error beep sound..." 10 50
  129. rmmod pcspkr
  130. echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf ;}
  131. finalize(){ \
  132. dialog --infobox "Preparing welcome message..." 4 50
  133. 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"
  134. 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
  135. }
  136. ### THE ACTUAL SCRIPT ###
  137. ### This is how everything happens in an intuitive format and order.
  138. # Check if user is root on Arch distro. Install dialog.
  139. installpkg dialog || error "Are you sure you're running this as the root user and have an internet connection?"
  140. # Welcome user and pick dotfiles.
  141. welcomemsg || error "User exited."
  142. selectdotfiles || error "User exited."
  143. # Get and verify username and password.
  144. getuserandpass || error "User exited."
  145. # Give warning if user already exists.
  146. usercheck || error "User exited."
  147. # Last chance for user to back out before install.
  148. preinstallmsg || error "User exited."
  149. ### The rest of the script requires no user input.
  150. adduserandpass || error "Error adding username and/or password."
  151. # Refresh Arch keyrings.
  152. # refreshkeys || error "Error automatically refreshing Arch keyring. Consider doing so manually."
  153. dialog --title "LARBS Installation" --infobox "Installing \`basedevel\` and \`git\` for installing other software required for the installation of other programs." 5 70
  154. installpkg curl
  155. installpkg base-devel
  156. installpkg git
  157. installpkg ntp
  158. dialog --title "LARBS Installation" --infobox "Synchronizing system time to ensure successful and secure installation of software..." 4 70
  159. ntp 0.us.pool.ntp.org >/dev/null 2>&1
  160. [ "$distro" = arch ] && { \
  161. [ -f /etc/sudoers.pacnew ] && cp /etc/sudoers.pacnew /etc/sudoers # Just in case
  162. # Allow user to run sudo without password. Since AUR programs must be installed
  163. # in a fakeroot environment, this is required for all builds with AUR.
  164. newperms "%wheel ALL=(ALL) NOPASSWD: ALL"
  165. # Make pacman and yay colorful and adds eye candy on the progress bar because why not.
  166. grep "^Color" /etc/pacman.conf >/dev/null || sed -i "s/^#Color$/Color/" /etc/pacman.conf
  167. grep "ILoveCandy" /etc/pacman.conf >/dev/null || sed -i "/#VerbosePkgLists/a ILoveCandy" /etc/pacman.conf
  168. # Use all cores for compilation.
  169. sed -i "s/-j2/-j$(nproc)/;s/^#MAKEFLAGS/MAKEFLAGS/" /etc/makepkg.conf
  170. manualinstall $aurhelper || error "Failed to install AUR helper."
  171. }
  172. # The command that does all the installing. Reads the progs.csv file and
  173. # installs each needed program the way required. Be sure to run this only after
  174. # the user has been created and has priviledges to run sudo without a password
  175. # and all build dependencies are installed.
  176. installationloop
  177. dialog --title "LARBS Installation" --infobox "Finally, installing \`libxft-bgra\` to enable color emoji in suckless software without crashes." 5 70
  178. yes | sudo -u "$name" $aurhelper -S libxft-bgra >/dev/null 2>&1
  179. # Install the dotfiles in the user's home directory
  180. putgitrepo "$dotfilesrepo" "/home/$name" "$repobranch"
  181. rm -f "/home/$name/README.md" "/home/$name/LICENSE"
  182. # Most important command! Get rid of the beep!
  183. systembeepoff
  184. # Make zsh the default shell for the user.
  185. sed -i "s/^$name:\(.*\):\/bin\/.*/$name:\1:\/bin\/zsh/" /etc/passwd
  186. # dbus UUID must be generated for Artix runit.
  187. dbus-uuidgen > /var/lib/dbus/machine-id
  188. # Block Brave autoupdates just in case. (I don't know if these even exist on Linux, but whatever.)
  189. grep -q "laptop-updates.brave.com" /etc/hosts || echo "0.0.0.0 laptop-updates.brave.com
  190. 0.0.0.0 go-updater.brave.com" >> /etc/hosts
  191. # Let LARBS know the WM it's supposed to run.
  192. echo "$edition" > "/home/$name/.local/share/larbs/wm"; chown -R "$name":wheel "/home/$name/.local"
  193. # This line, overwriting the `newperms` command above will allow the user to run
  194. # serveral important commands, `shutdown`, `reboot`, updating, etc. without a password.
  195. [ "$distro" = arch ] && newperms "%wheel ALL=(ALL) ALL #LARBS
  196. %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"
  197. # Last message! Install complete!
  198. finalize
  199. clear