Bare mode is dead in 2.0

Uninstall whatever you want yourself now that we have multi-tab
uninstalls
This commit is contained in:
David Heinemeier Hansson
2025-08-24 22:21:25 +02:00
parent 46f8b522f1
commit 39dccccb1a
10 changed files with 34 additions and 58 deletions

View File

@@ -1,17 +1,15 @@
#!/bin/bash
if [ -z "$OMARCHY_BARE" ]; then
sudo pacman -S --noconfirm --needed \
gnome-calculator gnome-keyring signal-desktop \
obsidian libreoffice obs-studio kdenlive \
xournalpp localsend
sudo pacman -S --noconfirm --needed \
gnome-calculator gnome-keyring signal-desktop \
obsidian libreoffice obs-studio kdenlive \
xournalpp localsend
# Packages known to be flaky or having key signing issues are run one-by-one
for pkg in spotify pinta; do
sudo pacman -S --noconfirm --needed "$pkg" ||
echo -e "\e[31mFailed to install $pkg. Continuing without!\e[0m"
done
fi
# Packages known to be flaky or having key signing issues are run one-by-one
for pkg in spotify pinta; do
sudo pacman -S --noconfirm --needed "$pkg" ||
echo -e "\e[31mFailed to install $pkg. Continuing without!\e[0m"
done
# Copy over Omarchy applications
source omarchy-refresh-applications || true