LARBS/larbs.sh

228 lines
9.6 KiB
Bash
Raw Normal View History

2018-08-02 02:25:18 +02:00
#!/bin/bash
2018-08-03 23:03:39 +02:00
# Luke's Auto Rice Boostrapping Script (LARBS)
# by Luke Smith <luke@lukesmith.xyz>
# License: GNU GPLv3
2018-08-02 02:25:18 +02:00
# You can provide a custom repository with -r or a custom programs csv with -p.
# Otherwise, the script will use my defaults.
2018-10-31 05:44:01 +01:00
### DEPENDENCIES: git and make. Make sure these either are among the first in the progs.csv file or installed manually beforehand.
###
### OPTIONS AND VARIABLES ###
###
2018-08-03 06:21:28 +02:00
while getopts ":a:r:p:h" o; do case "${o}" in
2018-08-27 18:40:33 +02:00
h) echo -e "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" && exit ;;
r) dotfilesrepo=${OPTARG} && git ls-remote "$dotfilesrepo" || exit ;;
2018-08-03 06:21:28 +02:00
p) progsfile=${OPTARG} ;;
a) aurhelper=${OPTARG} ;;
*) echo "-$OPTARG is not a valid option." && exit ;;
esac done
2018-08-02 02:25:18 +02:00
# DEFAULTS:
2018-08-02 02:25:18 +02:00
[ -z ${dotfilesrepo+x} ] && dotfilesrepo="https://github.com/lukesmithxyz/voidrice.git"
[ -z ${progsfile+x} ] && progsfile="https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/progs.csv"
2018-08-27 19:00:47 +02:00
[ -z ${aurhelper+x} ] && aurhelper="yay"
2018-08-02 02:25:18 +02:00
###
### FUNCTIONS ###
###
2018-08-02 02:25:18 +02:00
initialcheck() { pacman -Sy --noconfirm --needed dialog || { echo "Are you sure you're running this as the root user? Are you sure you're using an Arch-based distro? ;-) Are you sure you have an internet connection?"; exit; } ;}
2018-08-02 02:25:18 +02:00
preinstallmsg() { \
2018-08-27 18:40:33 +02:00
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; }
}
2018-08-02 02:25:18 +02:00
welcomemsg() { \
2018-08-27 18:40:33 +02:00
dialog --title "Welcome!" --msgbox "Welcome to Luke's Auto-Rice Bootstrapping Script!\\n\\nThis script will automatically install a fully-featured i3wm Arch Linux desktop, which I use as my main machine.\\n\\n-Luke" 10 60
}
2018-08-02 02:25:18 +02:00
refreshkeys() { \
dialog --infobox "Refreshing Arch Keyring..." 4 40
pacman --noconfirm -Sy archlinux-keyring &>/dev/null
}
2018-08-02 02:25:18 +02:00
getuserandpass() { \
# Prompts user for new username an password.
# Checks if username is valid and confirms passwd.
name=$(dialog --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit
namere="^[a-z_][a-z0-9_-]*$"
while ! [[ "${name}" =~ ${namere} ]]; do
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)
done
pass1=$(dialog --no-cancel --passwordbox "Enter a password for that user." 10 60 3>&1 1>&2 2>&3 3>&1)
pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
while ! [[ ${pass1} == ${pass2} ]]; do
unset pass2
2018-08-27 18:40:33 +02:00
pass1=$(dialog --no-cancel --passwordbox "Passwords do not match.\\n\\nEnter password again." 10 60 3>&1 1>&2 2>&3 3>&1)
pass2=$(dialog --no-cancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1)
done ;}
2018-08-02 02:25:18 +02:00
usercheck() { \
! (id -u $name &>/dev/null) ||
2018-08-27 18:40:33 +02:00
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
}
2018-08-02 02:25:18 +02:00
adduserandpass() { \
# Adds user `$name` with password $pass1.
dialog --infobox "Adding user \"$name\"..." 4 50
2018-08-27 18:40:33 +02:00
useradd -m -g wheel -s /bin/bash "$name" &>/dev/null ||
usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name"
echo "$name:$pass1" | chpasswd
unset pass1 pass2 ;}
2018-08-02 02:25:18 +02:00
2018-08-03 06:21:28 +02:00
gitmakeinstall() {
dir=$(mktemp -d)
2018-11-05 02:27:23 +01:00
dialog --title "LARBS Installation" --infobox "Installing \`$(basename $1)\` ($n of $total) via \`git\` and \`make\`. $(basename $1) $2" 5 70
2018-08-27 18:40:33 +02:00
git clone --depth 1 "$1" "$dir" &>/dev/null
cd "$dir" || exit
2018-08-03 02:11:12 +02:00
make &>/dev/null
make install &>/dev/null
2018-08-03 06:21:28 +02:00
cd /tmp ;}
maininstall() { # Installs all needed programs from main repo.
2018-11-05 02:27:23 +01:00
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 5 70
2018-08-03 06:21:28 +02:00
pacman --noconfirm --needed -S "$1" &>/dev/null
}
aurinstall() { \
2018-11-05 02:27:23 +01:00
dialog --title "LARBS Installation" --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 5 70
2018-08-03 06:21:28 +02:00
grep "^$1$" <<< "$aurinstalled" && return
sudo -u $name $aurhelper -S --noconfirm "$1" &>/dev/null
}
installationloop() { \
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" > /tmp/progs.csv
2018-08-03 06:21:28 +02:00
total=$(wc -l < /tmp/progs.csv)
aurinstalled=$(pacman -Qm | awk '{print $1}')
while IFS=, read -r tag program comment; do
n=$((n+1))
case "$tag" in
"") maininstall "$program" "$comment" ;;
"A") aurinstall "$program" "$comment" ;;
"G") gitmakeinstall "$program" "$comment" ;;
esac
2018-08-03 08:24:43 +02:00
done < /tmp/progs.csv ;}
2018-08-02 02:25:18 +02:00
2018-08-27 18:40:33 +02:00
serviceinit() { for service in "$@"; do
dialog --infobox "Enabling \"$service\"..." 4 40
systemctl enable "$service"
systemctl start "$service"
done ;}
newperms() { # Set special sudoers settings for install (or after).
2018-08-03 06:21:28 +02:00
sed -i "/#LARBS/d" /etc/sudoers
2018-08-03 18:27:15 +02:00
echo -e "$@ #LARBS" >> /etc/sudoers ;}
systembeepoff() { dialog --infobox "Getting rid of that retarded error beep sound..." 10 50
rmmod pcspkr
echo "blacklist pcspkr" > /etc/modprobe.d/nobeep.conf ;}
2018-08-03 20:11:16 +02:00
putgitrepo() { # Downlods a gitrepo $1 and places the files in $2 only overwriting conflicts
dialog --infobox "Downloading and installing config files..." 4 60
2018-08-03 20:11:16 +02:00
dir=$(mktemp -d)
2018-08-27 18:40:33 +02:00
chown -R "$name":wheel "$dir"
sudo -u "$name" git clone --depth 1 "$1" "$dir"/gitrepo &>/dev/null &&
sudo -u "$name" mkdir -p "$2" &&
sudo -u "$name" cp -rT "$dir"/gitrepo "$2"
}
2018-08-02 02:25:18 +02:00
resetpulse() { dialog --infobox "Reseting Pulseaudio..." 4 50
2018-08-27 18:40:33 +02:00
killall pulseaudio
sudo -n "$name" pulseaudio --start ;}
2018-08-02 02:25:18 +02:00
manualinstall() { # Installs $1 manually if not installed. Used only for AUR helper here.
[[ -f /usr/bin/$1 ]] || (
2018-09-11 00:10:50 +02:00
dialog --infobox "Installing \"$1\", an AUR helper..." 8 50
2018-08-02 02:25:18 +02:00
cd /tmp
2018-08-27 18:40:33 +02:00
rm -rf /tmp/"$1"*
curl -sO https://aur.archlinux.org/cgit/aur.git/snapshot/"$1".tar.gz &&
sudo -u "$name" tar -xvf "$1".tar.gz &>/dev/null &&
cd "$1" &&
2018-08-02 02:25:18 +02:00
sudo -u $name makepkg --noconfirm -si &>/dev/null
2018-08-03 06:21:28 +02:00
cd /tmp) ;}
2018-08-02 02:25:18 +02:00
finalize(){ \
dialog --infobox "Preparing welcome message..." 4 50
echo "exec_always --no-startup-id notify-send -i ~/.scripts/larbs.png '<b>Welcome to LARBS:</b> Press Super+F1 for the manual.' -t 10000" >> /home/$name/.config/i3/config
2018-08-27 18:40:33 +02:00
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.\\n\\n-Luke" 12 80
}
2018-08-02 02:25:18 +02:00
###
### THE ACTUAL SCRIPT ###
###
### This is how everything happens in an intuitive format and order.
###
2018-08-02 02:25:18 +02:00
# Check if user is root on Arch distro. Install dialog.
initialcheck
# Welcome user.
welcomemsg || { clear; exit; }
# Get and verify username and password.
getuserandpass
# Give warning if user already exists.
usercheck || { clear; exit; }
# Last chance for user to back out before install.
preinstallmsg || { clear; exit; }
### The rest of the script requires no user input.
adduserandpass
# Refresh Arch keyrings.
refreshkeys
# Allow user to run sudo without password. Since AUR programs must be installed
# in a fakeroot environment, this is required for all builds with AUR.
newperms "%wheel ALL=(ALL) NOPASSWD: ALL"
manualinstall $aurhelper
2018-08-03 06:21:28 +02:00
# The command that does all the installing. Reads the progs.csv file and
# installs each needed program the way required. Be sure to run this only after
# the user has been created and has priviledges to run sudo without a password
# and all build dependencies are installed.
installationloop
2018-08-03 20:11:16 +02:00
# Install the dotfiles in the user's home directory
putgitrepo "$dotfilesrepo" "/home/$name"
# Install the LARBS Firefox profile in ~/.mozilla/firefox/
putgitrepo "https://github.com/LukeSmithxyz/mozillarbs.git" "/home/$name/.mozilla/firefox"
2018-11-06 01:56:26 +01:00
# Installation of the post-install wizard
#putgitrepo "https://github.com/LukeSmithxyz/arch-postinstall-wizard" "/home/$name/larbs-wizard"
#ln -T /home/$name/.larbs-wizard/wizard.sh postinstall-wizard.sh
#
# Pulseaudio, if/when initially installed, often needs a restart to work immediately.
[[ -f /usr/bin/pulseaudio ]] && resetpulse
2018-08-02 02:25:18 +02:00
2018-11-06 01:56:26 +01:00
# Install vim `plugged` plugins.
dialog --info "Installing vim plugins..." 4 50
sudo -u "$name" vim -E -c "PlugUpdate|visual|q|q" >/dev/null
# Enable services here.
serviceinit NetworkManager cronie
2018-08-02 02:25:18 +02:00
# Most important command! Get rid of the beep!
systembeepoff
2018-08-02 02:25:18 +02:00
# This line, overwriting the `newperms` command above will allow the user to run
# serveral important commands, `shutdown`, `reboot`, updating, etc. without a password.
2018-11-05 22:59:26 +01:00
newperms "%wheel ALL=(ALL) ALL\\n%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,pacman -Syyuw --noconfirm"
2018-08-02 02:25:18 +02:00
2018-08-27 19:00:34 +02:00
# Make pacman and yay colorful because why not.
2018-09-30 20:27:03 +02:00
sed -i "s/^#Color/Color/g" /etc/pacman.conf
2018-08-27 19:00:34 +02:00
# Last message! Install complete!
finalize
2018-08-02 02:25:18 +02:00
clear