2017-09-25 03:11:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
RED='\033[0;31m'
|
|
|
|
BLUE='\033[0;34m'
|
|
|
|
NC='\033[0m'
|
|
|
|
printf "${BLUE}Changing directory to /home/$USER...\n${NC}"
|
|
|
|
cd /home/$USER
|
|
|
|
|
|
|
|
printf "${BLUE}Activating Pulseaudio if not already active...\n${NC}"
|
|
|
|
pulseaudio --start
|
|
|
|
|
|
|
|
|
|
|
|
printf "${BLUE}Installing packer as an AUR manager...\n${NC}"
|
2017-09-29 04:44:36 +02:00
|
|
|
|
|
|
|
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 ;}
|
|
|
|
|
|
|
|
aurinstall packer || echo "Error installing packer." && exit
|
2017-09-25 03:11:10 +02:00
|
|
|
|
|
|
|
printf "${BLUE}Installing AUR programs...\n${NC}"
|
|
|
|
printf "${BLUE}(May take some time.)\n${NC}"
|
2017-09-29 04:44:36 +02:00
|
|
|
packer --noconfirm -S i3-gaps vim-pathogen vim-live-latex-preview neofetch i3lock tamzen-font-git neomutt transmission-remote-cli-git unclutter-xfixes-git urxvt-resize-font-git ttf-ancient-fonts polybar-git python-pywal xfce-theme-blackbird || echo "Error installing AUR packages. Check your internet connections and pacman keys." && exit
|
2017-09-25 08:11:46 +02:00
|
|
|
#packer --noconfirm -S ncpamixer-git speedometer cli-visualizer
|
2017-09-25 03:11:10 +02:00
|
|
|
|
|
|
|
printf "${BLUE}Downloading config files...\n${NC}"
|
2017-09-29 04:44:36 +02:00
|
|
|
git clone https://github.com/lukesmithxyz/voidrice.git && rsync -va voidrice/ /home/$USER && rm -rf voidrice
|
|
|
|
git clone https://github.com/lukesmithxyz/latex-templates.git && mkdir -p /home/$USER/Documents/LaTeX && rsync -va latex-templates /home/$USER/Documents/LaTeX && rm -rf latex-templates
|
|
|
|
|
2017-09-25 03:11:10 +02:00
|
|
|
printf "${BLUE}Generating bash/ranger/qutebrowser shortcuts...\n${NC}"
|
|
|
|
python ~/.config/Scripts/shortcuts.py
|