1
0
mirror of https://github.com/elisspace/ArchMatic.git synced 2026-08-29 15:33:47 +00:00
Files
ArchMatic/8-software-aur.sh
2018-03-19 19:45:59 -06:00

77 lines
2.1 KiB
Bash
Executable File

#!/usr/bin/env bash
#-------------------------------------------------------------------------
# _ _ __ __ _ _
# /_\ _ _ __| |_ | \/ |__ _| |_(_)__
# / _ \| '_/ _| ' \| |\/| / _` | _| / _|
# /_/ \_\_| \__|_||_|_| |_\__,_|\__|_\__|
# Arch Linux Post Install Setup and Config
#-------------------------------------------------------------------------
echo
echo "INSTALLING AUR SOFTWARE"
echo
cd "${HOME}"
echo "CLOING: AURIC"
git clone "https://github.com/rickellis/AURIC.git"
PKGS=(
# SYSTEM UTILITIES ----------------------------------------------------
'menulibre' # Menu editor
'gtkhash' # Checksum verifier
# TERMINAL UTILITIES --------------------------------------------------
'hyper' # Terminal emulator built on Electron
# UTILITIES -----------------------------------------------------------
'dropbox' # Cloud file storage
'enpass-bin' # Password manager
'slimlock' # Screen locker
'oomox' # Theme editor
# DEVELOPMENT ---------------------------------------------------------
'visual-studio-code-bin' # Kickass text editor
# MEDIA ---------------------------------------------------------------
'spotify' # Music player
'screenkey' # Screencast your keypresses
# 'aftershotpro3' # Photo editor
# POST PRODUCTION -----------------------------------------------------
'peek' # GIF animation screen recorder
# COMMUNICATIONS ------------------------------------------------------
'skypeforlinux-stable-bin' # Skype
# THEMES --------------------------------------------------------------
'gtk-theme-arc-git'
'adapta-gtk-theme-git'
'paper-icon-theme'
'tango-icon-theme'
'tango-icon-theme-extras'
'numix-icon-theme-git'
'sardi-icons'
)
cd ${HOME}/AURIC
chmod +x auric.sh
for PKG in "${PKGS[@]}"; do
./auric.sh -i $PKG
done
echo
echo "Done!"
echo