Switch to pacman to make it clear when we are not depending on AUR

This commit is contained in:
David Heinemeier Hansson
2025-08-24 17:35:24 +02:00
parent 69afedf380
commit 9d739faf2b
36 changed files with 42 additions and 42 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Install bluetooth controls
yay -S --noconfirm --needed blueberry
sudo pacman -S --noconfirm --needed blueberry
# Turn on bluetooth by default
chrootable_systemctl_enable bluetooth.service

View File

@@ -1,6 +1,6 @@
#!/bin/bash
yay -S --noconfirm --needed \
sudo pacman -S --noconfirm --needed \
hyprland hyprshot hyprpicker hyprlock hypridle hyprsunset polkit-gnome hyprland-qtutils \
walker-bin libqalculate waybar mako swaybg swayosd \
xdg-desktop-portal-hyprland xdg-desktop-portal-gtk

View File

@@ -1,18 +1,18 @@
#!/bin/bash
# Use dark mode for QT apps too (like kdenlive)
if ! yay -Q kvantum-qt5 &>/dev/null; then
yay -S --noconfirm kvantum-qt5
if ! pacman -Q kvantum-qt5 &>/dev/null; then
sudo pacman -S --noconfirm kvantum-qt5
fi
# Prefer dark mode everything
if ! yay -Q gnome-themes-extra &>/dev/null; then
yay -S --noconfirm gnome-themes-extra # Adds Adwaita-dark theme
if ! pacman -Q gnome-themes-extra &>/dev/null; then
sudo pacman -S --noconfirm gnome-themes-extra # Adds Adwaita-dark theme
fi
# Allow icons to match the theme
if ! yay -! yaru-icon-theme &>/dev/null; then
yay -S --noconfirm yaru-icon-theme
sudo pacman -S --noconfirm yaru-icon-theme
fi
gsettings set org.gnome.desktop.interface gtk-theme "Adwaita-dark"