dev: automated commit - 2025-06-08 23:28:55
This commit is contained in:
parent
33106ea4a6
commit
0ab9f62ace
13 changed files with 1255 additions and 715 deletions
84
runs/aur
84
runs/aur
|
@ -1,34 +1,62 @@
|
|||
#!/usr/bin/env bash
|
||||
# NAME: aur script
|
||||
# NAME: Install AUR packages
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
echo "Running aur.sh script..."
|
||||
# Source common functions
|
||||
source "$(dirname "$0")/../common.sh" || {
|
||||
echo "[ERROR] Could not source common.sh" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
paru -S --needed --noconfirm 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 \
|
||||
swayfx-git \
|
||||
teams-for-linux-bin \
|
||||
ttf-font-awesome-5 \
|
||||
ttf-ms-win11-auto \
|
||||
watchman-bin \
|
||||
yubico-authenticator-bin
|
||||
check_requirements() {
|
||||
if ! command_exists paru; then
|
||||
log_error "paru not found. Install it first"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
echo "✅ aur completed successfully"
|
||||
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
|
||||
swayfx-git
|
||||
teams-for-linux-bin
|
||||
ttf-font-awesome-5
|
||||
ttf-ms-win11-auto
|
||||
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