Skip to content

Instantly share code, notes, and snippets.

@RogierWV
Last active December 20, 2015 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RogierWV/35bc9301424144d13fbe to your computer and use it in GitHub Desktop.
Save RogierWV/35bc9301424144d13fbe to your computer and use it in GitHub Desktop.
#!/bin/bash
wget https://aur.archlinux.org/cgit/aur.git/snapshot/budgie-desktop-git.tar.gz
wget https://aur.archlinux.org/cgit/aur.git/snapshot/evopop-gtk-theme-git.tar.gz
wget https://aur.archlinux.org/cgit/aur.git/snapshot/evopop-icon-theme.tar.gz
wget https://aur.archlinux.org/cgit/aur.git/snapshot/lightdm-webkit2-greeter.tar.gz
wget https://aur.archlinux.org/cgit/aur.git/snapshot/lightdm-webkit-google-git.tar.gz
wget http://i.imgur.com/wt4NRqA.jpg -O ~/Pictures/background.jpg
for file in $(ls *.tar.gz); do
tar xf $file;
done
cd budgie-desktop-git
makepkg -si
cd ../evopop-gtk-theme-git
makepkg -si
cd ../evopop-icon-theme
makepkg -si
cd ../lightdm-webkit2-greeter
makepkg -si
cd ../lightdm-webkit-google-git
makepkg -si
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment