#!/bin/sh ### OPTIONS AND VARIABLES ### dotfilesrepo="https://github.com/ivi-vink/dotfiles.git" progsfile="https://raw.githubusercontent.com/ivi-vink/flake/refs/heads/master/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 } 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 [ -f configure ] && ./configure >/dev/null 2>&1 make >/dev/null 2>&1 make install >/dev/null 2>&1 cd /tmp || return 1 } luarocksinstall() { whiptail --title "MVBS Installation" \ --infobox "Installing the LuaRocks package \`$1\` ($n of $total). $1 $2" 9 70 luarocks install "$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() { chosen_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 total=$(grep -e "^," -e "^$chosen_flavor" /tmp/progs.csv | wc -l) grep -e "^," -e "^$chosen_flavor" /tmp/progs.csv | while IFS=, read -r flavor tag program comment; do n=$((n + 1)) echo "$comment" | grep -q "^\".*\"$" && comment="$(echo "$comment" | sed -E "s/(^\"|\"$)//g")" case "$tag" in "G") gitmakeinstall "$program" "$comment" ;; "L") luarocksinstall "$program" "$comment" ;; *) maininstall "$program" "$comment" ;; esac done } putgitrepo() { # Downloads a gitrepo $1 and places the files in $2 only overwriting conflicts whiptail --infobox "Downloading and installing config files..." 7 60 [ -z "$3" ] && branch="master" || branch="$repobranch" dir=$(mktemp -d) [ ! -d "$2" ] && mkdir -p "$2" chown "$name":wheel "$dir" "$2" sudo -u "$name" git -C "$repodir" clone --depth 1 \ --single-branch --no-tags -q --recursive -b "$branch" \ --recurse-submodules "$1" "$dir" sudo -u "$name" cp -rfT "$dir" "$2" } vimplugininstall() { # Installs vim plugins. whiptail --infobox "Installing neovim plugins..." 7 60 mkdir -p "/home/$name/.config/nvim/autoload" curl -Ls "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim" > "/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. installpkg newt || error "Are you sure you're running this as the root user, are on Void or Debianish 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 cmake 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." # 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" # Most important command! Get rid of the beep! rmmod pcspkr echo "blacklist pcspkr" >/etc/modprobe.d/nobeep.conf # Make oksh the default shell for the user. chsh -s /bin/oksh "$name" >/dev/null 2>&1 # Make dash the default #!/bin/sh symlink. ln -sfT /bin/dash /bin/sh >/dev/null 2>&1 # Enable tap to click mkdir -p /etc/X11/xorg.conf.d [ ! -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 # Xdg home [ ! -f /etc/X11/xorg.conf.d/40-libinput.conf ] && printf 'export PATH="$HOME/.local/bin:$PATH" export XINITRC=$HOME/.config/x11/xinitrc export XDG_CONFIG_HOME=$HOME/.config export XDG_CACHE_HOME=$HOME/.cache export XDG_DATA_HOME=$HOME/.local/share' >/etc/profile.d/xdg-home.sh # 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-mvbs-wheel-can-sudo echo "%wheel ALL=(ALL:ALL) NOPASSWD: /usr/bin/shutdown,/usr/bin/reboot,/usr/bin/poweroff,/usr/bin/systemctl suspend,/usr/bin/wifi-menu,/usr/bin/mount,/usr/bin/umount,/usr/bin/xbps-install,/usr/bin/sv" >/etc/sudoers.d/01-mvbs-cmds-without-password echo "Defaults editor=/usr/local/bin/vis" >/etc/sudoers.d/02-mvbs-visudo-editor mkdir -p /etc/sysctl.d echo "kernel.dmesg_restrict = 0" > /etc/sysctl.d/dmesg.conf # Allow smart cards to be used. cp /usr/lib/udev/rules.d/70-u2f.rules /etc/udev/rules.d/70-u2f.rules sed -i -E 's/^KERNEL=="hidraw\*", SUBSYSTEM=="hidraw", (.*)/\1/' /etc/udev/rules.d/70-u2f.rules # Make sure /usr/local/lib is used. ldconfig # Last message! Install complete! finalize