dotfiles/dot_bin/executable_bootstrap_pkgs

167 lines
4.8 KiB
Plaintext
Raw Normal View History

#! /bin/bash
## Install all required packages for this user. It only needs to be run once
## when setting up the HOME directory.
##
## This script is designed not to ask the user over and over again for their
## sudo password. Since it uses yay and makepkg to install AUR and custom
## PKGBUILDs, the somewhat hacky way to do this is as follows:'
## 1. call this script as root
## 2. give the nobody user permission to run pacman with no password via sudo
## 3. set up a custom, temporary HOME directory for yay which is owned by nobody
## 4. run yay as nobody with HOME set to the directory made in (3)
## 5. run makepkg as nobody
## 6. remove the temporary HOME for yay
## 7. remove the pacman sudo privilege for nobody
pkgsrc_dir="$1"
emacs_dir="$2"
makepkg_tmp=/tmp/bootstrap-makepkg
yaytmp=/tmp/bootstrap-yay
nobody_sudo_conf="nobody ALL=(root) NOPASSWD: /usr/bin/pacman"
nobody_sudo_path=/etc/sudoers.d/10-nobody-pacman
mk_nobody_perms() {
2021-03-13 16:57:45 -05:00
echo "Giving user nobody permission to use pacman without password"
echo "$nobody_sudo_conf" > "$nobody_sudo_path"
}
mk_yaytmp() {
echo "Creating temporary build directory for yay at $yaytmp"
mkdir "$yaytmp"
chown -R nobody:nobody "$yaytmp"
}
2021-03-13 16:57:45 -05:00
mk_makepkg_dir() {
echo "Creating temporary makepkg build directory at $makepkg_tmp"
mkdir -p "$makepkg_tmp"
echo "Populated with packages from $pkgsrc_dir"
cp -r "$pkgsrc_dir"/* "$makepkg_tmp"
chown -R nobody:nobody "$makepkg_tmp"
}
try_nobody_update() {
## Try updating pacman as the nobody user. If this fails then something
## went wrong when setting up sudo permissions for nobody
2021-03-13 16:57:45 -05:00
echo "Testing pacman permissions for user nobody. Trying to update cache."
if ! sudo -u nobody -n sudo pacman -Syy; then
echo "Failed to obtain pacman permissions for user nobody. Exiting."
2021-03-13 16:57:45 -05:00
return 1
fi
}
2021-03-13 16:57:45 -05:00
call_makepkg() {
cd "$makepkg_tmp/$1" || return 1
2021-03-13 17:47:06 -05:00
sudo -u nobody MAKEFLAGS="-j$(nproc)" makepkg -s -r -i -f --noconfirm
2021-03-13 16:57:45 -05:00
}
get_emacs_packages() {
emacs -batch -l "$emacs_dir/init.el" --eval \
"(print (s-join \" \" $1))" 2>/dev/null | \
sed -n -e 's/"\(.*\)"/\1/p'
}
run_yay() {
## TODO add template switches to control which of these get installed based
## on my config
## packages for emacs (install emacs first to read the config)
pacman --needed -S emacs
IFS=' ' read -r -a emacs_pkgs \
< <(get_emacs_packages "(nd/get-aur-dependencies t)")
## other packages for random gizmos
dunst_pkgs=(dunst)
flameshot_pkgs=(flameshot)
gtk_pkgs=(zuki-themes)
nvidia_pkgs=(optimus-manager)
r_pkgs=(r docker-rootless-extras-bin gcc-fortran texlive-bin tk)
redshift_pkgs=(redshift)
rofi_pkgs=(rofi-git bitwarden-cli libnotify rofi-greenclip
networkmanager-dmenu-git veracrypt sshfs jmtpfs)
seafile_pkgs=(seafile)
urxvt_pkgs=(urxvt-tabbedex rxvt-unicode urxvt-perls)
xmonad_pkgs=(stack-static autorandr feh xorg-server xorg-xset libpulse
playerctl wireless_tools acpid ttf-symbola-free ttf-symbola-free
ttf-dejavu awesome-terminal-fonts numlockx picom i3lock-color
xorg-xrandr xss-lock)
zsh_pkgs=(zsh zsh-completions zsh-syntax-highlighting)
## AUR pkgs needed for spotify
spotify_pkgs=(gconf)
2021-03-13 18:20:23 -05:00
sudo -u nobody HOME="$yaytmp" MAKEFLAGS="-j$(nproc)" \
yay --needed --noconfirm --removemake -S \
"${dunst_pkgs[@]}" \
"${emacs_pkgs[@]}" \
"${flameshot_pkgs[@]}" \
"${gtk_pkgs[@]}" \
"${nvidia_pkgs[@]}" \
"${nvidia_pkgs[@]}" \
"${r_pkgs[@]}" \
"${redshift_pkgs[@]}" \
"${rofi_pkgs[@]}" \
"${seafile_pkgs[@]}" \
"${urxvt_pkgs[@]}" \
"${xmonad_pkgs[@]}" \
"${zsh_pkgs[@]}" \
"${spotify_pkgs[@]}"
}
run_makepkg() {
## these are all packages that have some personal customizations and/or are
## not in the AUR
call_makepkg "clevo-xsm-wmi-dkms"
call_makepkg "conky-lua"
call_makepkg "spotify"
call_makepkg "xkb-hypermode"
}
2021-03-13 16:57:45 -05:00
rm_makepkg_dir() {
echo "Removing temporary makepkg build directory at $makepkg_tmp"
rm -r -f "$makepkg_tmp"
2021-03-13 16:57:45 -05:00
}
rm_yaytmp() {
echo "Removing temporary build directory for yay at $yaytmp"
rm -r -f "$yaytmp"
2021-03-13 16:57:45 -05:00
}
rm_nobody_perms() {
echo "Removing user nobody's permission to use pacman without password"
rm -f "$nobody_sudo_path"
2021-03-13 16:57:45 -05:00
}
clean_up() {
rm_yaytmp
rm_makepkg_dir
rm_nobody_perms
exit
}
2021-03-13 17:05:36 -05:00
trap 'clean_up' ERR
2021-03-13 16:57:45 -05:00
2021-03-13 16:32:57 -05:00
if [[ ! "$(id -u)" = "0" ]]; then
echo "This script must be run as root. Exiting"
exit 1
fi
if [ "$#" -ne 2 ]; then
echo "Must supply custom package location and emacs root. Exiting"
exit 1
fi
mk_nobody_perms
try_nobody_update
mk_yaytmp
run_yay
rm_yaytmp
2021-03-13 16:57:45 -05:00
mk_makepkg_dir
run_makepkg
2021-03-13 17:05:36 -05:00
rm_makepkg_dir
2021-03-13 17:05:36 -05:00
rm_nobody_perms