#!/bin/bash #Install an AUR package manually. aurinstall() { curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz && tar -xvf $1.tar.gz && cd $1 && makepkg --noconfirm -si && cd .. && rm -rf $1 $1.tar.gz ;} #aurcheck runs on each of its arguments, if the argument is not already installed, it either uses packer to install it, or installs it manually. aurcheck() { qm=$(pacman -Qm | awk '{print $1}') for arg in "$@" do if [[ $qm = *"$arg"* ]]; then echo $arg is already installed. else echo $arg not installed. packer --noconfirm -S $arg >/dev/null || aurinstall $arg fi done } dialog --infobox "Installing \"packer\", an AUR helper..." 10 60 aurcheck packer >/dev/null count=$(cat /tmp/aur_queue | wc -l) n=0 for prog in $(cat /tmp/aur_queue) do n=$((n+1)) dialog --infobox "Downloading and installing program $n out of $count: $prog..." 10 60 aurcheck $prog >/dev/null done echo Downloading config files... git clone https://github.com/lukesmithxyz/voidrice.git >/dev/null && rsync -va voidrice/ /home/$(whoami) >/dev/null && rm -rf voidrice >/dev/null dialog --infobox "Now compiling polybar. This is the last program, but may take some time..." 10 60 wifi=$(ls /sys/class/net | grep wl) eth=$(ls /sys/class/net | grep eth) sed -e "s/wlp3s0/$wifi/g; s/enp0s25/$eth/g" /home/$(whoami)/.config/polybar/config /home/$(whoami)/.bashrc packer --noconfig -S polybar-git echo Downloading email setup... git clone https://github.com/lukesmithxyz/mutt-wizard.git /home/$(whoami)/.config/mutt >/dev/null dialog --infobox "Generating bash/ranger/qutebrowser shortcuts..." 4 60 git clone https://github.com/LukeSmithxyz/shortcut-sync.git >/dev/null && rsync shortcut-sync/shortcuts.sh ~/.scripts/ >/dev/null && rsync shortcut-sync/folders ~/.scripts/ >/dev/null && rsync shortcut-sync/configs ~/.scripts/ >/dev/null && bash /home/$(whoami)/.scripts/shortcuts.sh >/dev/null && rm -rf shortcut-sync/ >/dev/null dialog --infobox "Preparing welcome message..." 4 50 curl https://raw.githubusercontent.com/LukeSmithxyz/larbs/master/src/welcome_i3 >> /home/$(whoami)/.config/i3/config dialog --infobox "Reseting Pulseaudio..." 4 50 killall pulseaudio >/dev/null pulseaudio --start >/dev/null