linuxShortcuts/Arch-Manjaro/aur.sh
Bruno Fontes 3429d61c4b
aur.sh
This shortcut will download an AUR repository get, makepkg and install, with all the dependencies. Last, but not least, it will generate a small notification.
2018-05-25 23:22:17 -03:00

7 lines
158 B
Bash

sudo echo
cd ~/Downloads
git clone https://aur.archlinux.org/"$1".git
cd "$1"
sudo yes | makepkg -si && cd ..; rm -rf ""$1""
notify-send """$1"" installed!"