34 lines
589 B
Bash
Executable file
34 lines
589 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# NAME: aur script
|
|
|
|
set -euo pipefail
|
|
|
|
echo "Running aur.sh script..."
|
|
|
|
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
|
|
|
|
echo "✅ aur completed successfully"
|