From 749c090d981455f51b778b7b54d11f03d0ca2e07 Mon Sep 17 00:00:00 2001 From: Bruno Fontes Date: Fri, 25 May 2018 23:16:25 -0300 Subject: [PATCH] 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. --- Arch-Manjaro/aur.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Arch-Manjaro/aur.sh diff --git a/Arch-Manjaro/aur.sh b/Arch-Manjaro/aur.sh new file mode 100644 index 0000000..4e306d0 --- /dev/null +++ b/Arch-Manjaro/aur.sh @@ -0,0 +1,6 @@ +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!"