2017-09-24 18:11:10 -07:00
|
|
|
#!/bin/bash
|
2017-10-06 11:06:37 -07:00
|
|
|
|
2017-10-07 15:09:18 -07:00
|
|
|
blue() { printf "\033[0;34m $* \033[0m\n" && (echo $* >> LARBS.log) ;}
|
|
|
|
red() { printf "\033[0;31m $* \033[0m\n" && (echo ERROR: $* >> LARBS.log) ;}
|
2017-10-06 11:06:37 -07:00
|
|
|
|
|
|
|
USER=$(cat .firstrun)
|
2017-10-05 21:59:38 -07:00
|
|
|
blue Changing directory to /home/$USER...
|
2017-10-06 11:06:37 -07:00
|
|
|
|
2017-09-24 18:11:10 -07:00
|
|
|
cd /home/$USER
|
|
|
|
|
2017-10-05 21:59:38 -07:00
|
|
|
blue Activating Pulseaudio if not already active...
|
2017-10-06 11:06:37 -07:00
|
|
|
pulseaudio --start && blue Pulseaudio enabled...
|
2017-09-24 18:11:10 -07:00
|
|
|
|
2017-10-07 15:09:18 -07:00
|
|
|
curl -O http://lukesmith.xyz/larbs/aur_install.sh && bash aur_install.sh
|
2017-10-05 22:11:17 -07:00
|
|
|
rm aur_install.sh
|
2017-09-24 18:11:10 -07:00
|
|
|
|
2017-10-05 21:59:38 -07:00
|
|
|
blue Downloading config files...
|
2017-09-28 22:44:36 -04:00
|
|
|
git clone https://github.com/lukesmithxyz/voidrice.git && rsync -va voidrice/ /home/$USER && rm -rf voidrice
|
|
|
|
|
2017-10-05 21:59:38 -07:00
|
|
|
blue Generating bash/ranger/qutebrowser shortcuts...
|
2017-09-24 18:11:10 -07:00
|
|
|
python ~/.config/Scripts/shortcuts.py
|