From a3542aba39bf71cb33422fdbeaf3e430ad4244ec Mon Sep 17 00:00:00 2001 From: Mike Vink Date: Sun, 2 Feb 2025 23:04:08 +0100 Subject: fix homeserver and start xbps --- mvbs.sh | 347 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 347 insertions(+) create mode 100644 mvbs.sh (limited to 'mvbs.sh') diff --git a/mvbs.sh b/mvbs.sh new file mode 100644 index 0000000..0791385 --- /dev/null +++ b/mvbs.sh @@ -0,0 +1,347 @@ +#!/bin/sh + +# Based on: +# Luke's Auto Rice Bootstrapping Script (MVBS) +# by Luke Smith +# License: GNU GPLv3 + +### OPTIONS AND VARIABLES ### + +dotfilesrepo="https://github.com/ivi-vink/flake.git" +progsfile="https://raw.githubusercontent.com/LukeSmithxyz/MVBS/master/static/progs.csv" +repobranch="master" +export TERM=ansi + +### FUNCTIONS ### + +installpkg() { + xbps-install --yes "$1" >/dev/null 2>&1 +} + +error() { + # Log to stderr and exit with failure. + printf "%s\n" "$1" >&2 + exit 1 +} + +welcomemsg() { + whiptail --title "Welcome!" \ + --msgbox "Welcome to the Auto-Unix-IDE Bootstrapping Script!\\n\\nThis script will automatically install a fully-featured Unix IDE and optionally a Linux desktop.\\n\\n-Mike" 10 60 +} + +getuserandpass() { + # Prompts user for new username and password. + name=$(whiptail --inputbox "First, please enter a name for the user account." 10 60 3>&1 1>&2 2>&3 3>&1) || exit 1 + while ! echo "$name" | grep -q "^[a-z_][a-z0-9_-]*$"; do + name=$(whiptail --nocancel --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=$(whiptail --nocancel --passwordbox "Enter a password for that user." 10 60 3>&1 1>&2 2>&3 3>&1) + pass2=$(whiptail --nocancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1) + while ! [ "$pass1" = "$pass2" ]; do + unset pass2 + pass1=$(whiptail --nocancel --passwordbox "Passwords do not match.\\n\\nEnter password again." 10 60 3>&1 1>&2 2>&3 3>&1) + pass2=$(whiptail --nocancel --passwordbox "Retype password." 10 60 3>&1 1>&2 2>&3 3>&1) + done +} + +usercheck() { + ! { id -u "$name" >/dev/null 2>&1; } || + whiptail --title "WARNING" --yes-button "CONTINUE" \ + --no-button "No wait..." \ + --yesno "The user \`$name\` already exists on this system. MVBS can install for a user already existing, but it will OVERWRITE any conflicting settings/dotfiles on the user account.\\n\\nMVBS will NOT overwrite your user files, documents, videos, etc., so don't worry about that, but only click if you don't mind your settings being overwritten.\\n\\nNote also that MVBS will change $name's password to the one you just gave." 14 70 +} + +preinstallmsg() { + whiptail --title "Let's get this party started!" --yes-button "Let's go!" \ + --no-button "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 and the system will begin installation!" 13 60 || { + clear + exit 1 + } +} + +adduserandpass() { + # Adds user `$name` with password $pass1. + whiptail --infobox "Adding user \"$name\"..." 7 50 + useradd -m -g wheel -s /bin/zsh "$name" >/dev/null 2>&1 || + usermod -a -G wheel "$name" && mkdir -p /home/"$name" && chown "$name":wheel /home/"$name" + export repodir="/home/$name/.local/src" + mkdir -p "$repodir" + chown -R "$name":wheel "$(dirname "$repodir")" + echo "$name:$pass1" | chpasswd + unset pass1 pass2 +} + +refreshkeys() { + case "$(readlink -f /sbin/init)" in + *systemd*) + whiptail --infobox "Refreshing Arch Keyring..." 7 40 + pacman --noconfirm -S archlinux-keyring >/dev/null 2>&1 + ;; + *) + whiptail --infobox "Enabling Arch Repositories for more a more extensive software collection..." 7 40 + pacman --noconfirm --needed -S \ + artix-keyring artix-archlinux-support >/dev/null 2>&1 + grep -q "^\[extra\]" /etc/pacman.conf || + echo "[extra] +Include = /etc/pacman.d/mirrorlist-arch" >>/etc/pacman.conf + pacman -Sy --noconfirm >/dev/null 2>&1 + pacman-key --populate archlinux >/dev/null 2>&1 + ;; + esac +} + +maininstall() { + # Installs all needed programs from main repo. + whiptail --title "MVBS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 9 70 + installpkg "$1" +} + +gitmakeinstall() { + progname="${1##*/}" + progname="${progname%.git}" + dir="$repodir/$progname" + whiptail --title "MVBS Installation" \ + --infobox "Installing \`$progname\` ($n of $total) via \`git\` and \`make\`. $(basename "$1") $2" 8 70 + sudo -u "$name" git -C "$repodir" clone --depth 1 --single-branch \ + --no-tags -q "$1" "$dir" || + { + cd "$dir" || return 1 + sudo -u "$name" git pull --force origin master + } + cd "$dir" || exit 1 + make >/dev/null 2>&1 + make install >/dev/null 2>&1 + cd /tmp || return 1 +} + +aurinstall() { + whiptail --title "MVBS Installation" \ + --infobox "Installing \`$1\` ($n of $total) from the AUR. $1 $2" 9 70 + echo "$aurinstalled" | grep -q "^$1$" && return 1 + sudo -u "$name" $aurhelper -S --noconfirm "$1" >/dev/null 2>&1 +} + +pipinstall() { + whiptail --title "MVBS Installation" \ + --infobox "Installing the Python package \`$1\` ($n of $total). $1 $2" 9 70 + [ -x "$(command -v "pip")" ] || installpkg python-pip >/dev/null 2>&1 + yes | pip install "$1" +} + +installationloop() { + flavor="$(whiptail --menu 'Package list flavor:' 10 60 2 cli 'installs unix ide cli tools only.' desktop 'installs a desktop with managed windows.' 3>&1 1>&2 2>&3 3>&1)" + ([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || + curl -Ls "$progsfile" | sed '/^#/d' >/tmp/progs.csv + case "$flavor" in + cli) total=$(grep -e "^cli" /tmp/progs.csv | wc -l); grep -e "^cli" /tmp/progs.csv ;; + desktop) total=$(grep -e "^desktop" -e "^cli" /tmp/progs.csv | wc -l); grep -e "^desktop" -e "^cli" /tmp/progs.csv ;; + *) total=$(wc -l "/home/$name/.config/nvim/autoload/plug.vim" + chown -R "$name:wheel" "/home/$name/.config/nvim" + sudo -u "$name" nvim -c "PlugInstall|q|q" +} + +makeuserjs(){ + # Get the Arkenfox user.js and prepare it. + arkenfox="$pdir/arkenfox.js" + overrides="$pdir/user-overrides.js" + userjs="$pdir/user.js" + ln -fs "/home/$name/.config/firefox/larbs.js" "$overrides" + [ ! -f "$arkenfox" ] && curl -sL "https://raw.githubusercontent.com/arkenfox/user.js/master/user.js" > "$arkenfox" + cat "$arkenfox" "$overrides" > "$userjs" + chown "$name:wheel" "$arkenfox" "$userjs" + # Install the updating script. + mkdir -p /usr/local/lib /etc/pacman.d/hooks + cp "/home/$name/.local/bin/arkenfox-auto-update" /usr/local/lib/ + chown root:root /usr/local/lib/arkenfox-auto-update + chmod 755 /usr/local/lib/arkenfox-auto-update + # Trigger the update when needed via a pacman hook. + echo "[Trigger] +Operation = Upgrade +Type = Package +Target = firefox +Target = librewolf +Target = librewolf-bin +[Action] +Description=Update Arkenfox user.js +When=PostTransaction +Depends=arkenfox-user.js +Exec=/usr/local/lib/arkenfox-auto-update" > /etc/pacman.d/hooks/arkenfox.hook +} + +installffaddons(){ + addonlist="ublock-origin decentraleyes istilldontcareaboutcookies vim-vixen" + addontmp="$(mktemp -d)" + trap "rm -fr $addontmp" HUP INT QUIT TERM PWR EXIT + IFS=' ' + sudo -u "$name" mkdir -p "$pdir/extensions/" + for addon in $addonlist; do + if [ "$addon" = "ublock-origin" ]; then + addonurl="$(curl -sL https://api.github.com/repos/gorhill/uBlock/releases/latest | grep -E 'browser_download_url.*\.firefox\.xpi' | cut -d '"' -f 4)" + else + addonurl="$(curl --silent "https://addons.mozilla.org/en-US/firefox/addon/${addon}/" | grep -o 'https://addons.mozilla.org/firefox/downloads/file/[^"]*')" + fi + file="${addonurl##*/}" + sudo -u "$name" curl -LOs "$addonurl" > "$addontmp/$file" + id="$(unzip -p "$file" manifest.json | grep "\"id\"")" + id="${id%\"*}" + id="${id##*\"}" + mv "$file" "$pdir/extensions/$id.xpi" + done + chown -R "$name:$name" "$pdir/extensions" + # Fix a Vim Vixen bug with dark mode not fixed on upstream: + sudo -u "$name" mkdir -p "$pdir/chrome" + [ ! -f "$pdir/chrome/userContent.css" ] && sudo -u "$name" echo ".vimvixen-console-frame { color-scheme: light !important; } +#category-more-from-mozilla { display: none !important }" > "$pdir/chrome/userContent.css" +} + +finalize() { + whiptail --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" 13 80 +} + +### THE ACTUAL SCRIPT ### + +### This is how everything happens in an intuitive format and order. + +# Check if user is root on Arch distro. Install whiptail. +xbps-install --yes newt || + error "Are you sure you're running this as the root user, are on Void Linux and have an internet connection?" + +# Welcome user and pick dotfiles. +welcomemsg || error "User exited." + +# Get and verify username and password. +getuserandpass || error "User exited." + +# Give warning if user already exists. +usercheck || error "User exited." + +# Last chance for user to back out before install. +preinstallmsg || error "User exited." + +### The rest of the script requires no user input. +for x in curl ca-certificates base-devel git ntp oksh; do + whiptail --title "MVBS Installation" \ + --infobox "Installing \`$x\` which is required to install and configure other programs." 8 70 + installpkg "$x" +done + +whiptail --title "MVBS Installation" \ + --infobox "Synchronizing system time to ensure successful and secure installation of software..." 8 70 +ntpd -q -g >/dev/null 2>&1 + +adduserandpass || error "Error adding username and/or password." + +echo "%wheel ALL=(ALL) NOPASSWD: ALL +Defaults:%wheel,root runcwd=*" >/etc/sudoers.d/mvbs + +# 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 privileges to run sudo without a password +# and all build dependencies are installed. +installationloop + +# # Install the dotfiles in the user's home directory, but remove .git dir and +# # other unnecessary files. +# putgitrepo "$dotfilesrepo" "/home/$name" "$repobranch" +# rm -rf "/home/$name/.git/" "/home/$name/README.md" "/home/$name/LICENSE" "/home/$name/FUNDING.yml" +# +# # Write urls for newsboat if it doesn't already exist +# [ -s "/home/$name/.config/newsboat/urls" ] || + # sudo -u "$name" echo "$rssurls" > "/home/$name/.config/newsboat/urls" +# +# # Install vim plugins if not alread present. +# [ ! -f "/home/$name/.config/nvim/autoload/plug.vim" ] && vimplugininstall +# +# # Most important command! Get rid of the beep! +# rmmod pcspkr +# echo "blacklist pcspkr" >/etc/modprobe.d/nobeep.conf +# +# # Make zsh the default shell for the user. +# chsh -s /bin/zsh "$name" >/dev/null 2>&1 +# sudo -u "$name" mkdir -p "/home/$name/.cache/zsh/" +# sudo -u "$name" mkdir -p "/home/$name/.config/abook/" +# sudo -u "$name" mkdir -p "/home/$name/.config/mpd/playlists/" +# +# # Make dash the default #!/bin/sh symlink. +# ln -sfT /bin/dash /bin/sh >/dev/null 2>&1 +# +# # dbus UUID must be generated for Artix runit. +# dbus-uuidgen >/var/lib/dbus/machine-id +# +# # Use system notifications for Brave on Artix +# echo "export \$(dbus-launch)" >/etc/profile.d/dbus.sh +# +# # Enable tap to click +# [ ! -f /etc/X11/xorg.conf.d/40-libinput.conf ] && printf 'Section "InputClass" + # Identifier "libinput touchpad catchall" + # MatchIsTouchpad "on" + # MatchDevicePath "/dev/input/event*" + # Driver "libinput" + # # Enable left mouse button by tapping + # Option "Tapping" "on" +# EndSection' >/etc/X11/xorg.conf.d/40-libinput.conf +# +# # All this below to get Librewolf installed with add-ons and non-bad settings. +# +# whiptail --infobox "Setting browser privacy settings and add-ons..." 7 60 +# +# browserdir="/home/$name/.librewolf" +# profilesini="$browserdir/profiles.ini" +# +# # Start librewolf headless so it generates a profile. Then get that profile in a variable. +# sudo -u "$name" librewolf --headless >/dev/null 2>&1 & +# sleep 1 +# profile="$(sed -n "/Default=.*.default-default/ s/.*=//p" "$profilesini")" +# pdir="$browserdir/$profile" +# +# [ -d "$pdir" ] && makeuserjs +# +# [ -d "$pdir" ] && installffaddons +# +# # Kill the now unnecessary librewolf instance. +# pkill -u "$name" librewolf +# +# # Allow wheel users to sudo with password and allow several system commands +# # (like `shutdown` to run without password). +# echo "%wheel ALL=(ALL:ALL) ALL" >/etc/sudoers.d/00-larbs-wheel-can-sudo +# echo "%wheel ALL=(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/pacman -Syyu --noconfirm,/usr/bin/loadkeys,/usr/bin/pacman -Syyuw --noconfirm,/usr/bin/pacman -S -y --config /etc/pacman.conf --,/usr/bin/pacman -S -y -u --config /etc/pacman.conf --" >/etc/sudoers.d/01-larbs-cmds-without-password +# echo "Defaults editor=/usr/bin/nvim" >/etc/sudoers.d/02-larbs-visudo-editor +# mkdir -p /etc/sysctl.d +# echo "kernel.dmesg_restrict = 0" > /etc/sysctl.d/dmesg.conf +# +# # Cleanup +# rm -f /etc/sudoers.d/larbs-temp +# +# # Last message! Install complete! +# finalize -- cgit v1.2.3