dev: automated commit - 2025-07-17 14:03:35
This commit is contained in:
parent
b60e2c8e13
commit
387d523c9f
8 changed files with 10 additions and 11 deletions
60
runs/3-aur
Executable file
60
runs/3-aur
Executable file
|
|
@ -0,0 +1,60 @@
|
|||
#!/usr/bin/env bash
|
||||
# NAME: Install AUR packages
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
# Source common functions
|
||||
source "$(dirname "$0")/../common.sh" || {
|
||||
echo "[ERROR] Could not source common.sh" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
check_requirements() {
|
||||
if ! command_exists paru; then
|
||||
log_error "paru not found. Install it first"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
install_aur_packages() {
|
||||
local packages=(
|
||||
adwaita-dark
|
||||
aws-session-manager-plugin
|
||||
bottles
|
||||
bruno-bin
|
||||
davmail
|
||||
dmg2img
|
||||
ebgaramond-otf
|
||||
insomnia-bin
|
||||
kubefwd-bin
|
||||
mpvpaper
|
||||
ngrok
|
||||
openvpn3-git
|
||||
otf-font-awesome-5
|
||||
postman-bin
|
||||
rofi-lbonn-wayland-git
|
||||
rose-pine-gtk-theme
|
||||
slack-desktop
|
||||
soapui
|
||||
sublime-merge
|
||||
teams-for-linux-bin
|
||||
ttf-font-awesome-5
|
||||
watchman-bin
|
||||
yubico-authenticator-bin
|
||||
betterbird-bin
|
||||
)
|
||||
|
||||
log_info "Installing AUR packages"
|
||||
paru -S --needed --noconfirm "${packages[@]}"
|
||||
}
|
||||
|
||||
main() {
|
||||
init_script
|
||||
|
||||
check_requirements
|
||||
install_aur_packages
|
||||
|
||||
finish_script 0
|
||||
}
|
||||
|
||||
main "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue