You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.0 KiB
61 lines
2.0 KiB
#!/usr/bin/env bash
|
|
echo
|
|
echo "INSTALLING SOFTWARE"
|
|
echo
|
|
|
|
PKGS=(
|
|
|
|
# TERMINAL UTILITIES --------------------------------------------------
|
|
|
|
'curl' # Remote content retrieval
|
|
'gufw' # Firewall manager
|
|
'neofetch' # Shows system info when you launch terminal
|
|
'numlockx' # Turns on numlock in X11
|
|
'p7zip' # 7z compression program
|
|
'unrar' # RAR compression program
|
|
'unzip' # Zip compression program
|
|
'wget' # Remote content retrieval
|
|
'vim' # Terminal Editor
|
|
'zenity' # Display graphical dialog boxes via shell scripts
|
|
'zip' # Zip compression program
|
|
'nano' # Simpler Terminal Editor
|
|
'kitty' # Terminal Emulator
|
|
|
|
# GENERAL UTILITIES ---------------------------------------------------
|
|
|
|
'vlc' # Video Player
|
|
'lutris' # Gaming
|
|
'wine' # Gaming
|
|
'spotify' # Music
|
|
'obs-studio' # Screen Recording
|
|
'remmina' # RDP
|
|
'thunar' # File Manager
|
|
'thunar-archive-plugin'
|
|
'ark'
|
|
|
|
# DEVELOPMENT ---------------------------------------------------------
|
|
|
|
'gedit' # Text editor
|
|
'code' # Visual Studio Code
|
|
'git' # Version control system
|
|
'nodejs' # Javascript runtime environment
|
|
'npm' # Node package manager
|
|
'python' # Scripting language
|
|
'yarn' # Dependency management (Hyper needs this)
|
|
'gimp' # Photo Editor
|
|
'kdenlive' # Video Editor
|
|
|
|
# PRODUCTIVITY --------------------------------------------------------
|
|
|
|
'xpdf' # PDF viewer
|
|
|
|
)
|
|
|
|
for PKG in "${PKGS[@]}"; do
|
|
echo "INSTALLING: ${PKG}"
|
|
sudo pacman -S "$PKG" --noconfirm --needed
|
|
done
|
|
|
|
echo
|
|
echo "Done!"
|
|
echo
|
|
|