mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
28 lines
872 B
Bash
28 lines
872 B
Bash
echo "Add UWSM env"
|
|
|
|
export OMARCHY_PATH="$HOME/.local/share/omarchy"
|
|
export PATH="$OMARCHY_PATH/bin:$PATH"
|
|
|
|
mkdir -p "$HOME/.config/uwsm/"
|
|
cat <<EOF | tee "$HOME/.config/uwsm/env"
|
|
export OMARCHY_PATH=$HOME/.local/share/omarchy
|
|
export PATH=$OMARCHY_PATH/bin/:$PATH
|
|
EOF
|
|
|
|
# Ensure we have the latest repos and are ready to pull
|
|
omarchy-refresh-pacman
|
|
sudo systemctl restart systemd-timesyncd
|
|
sudo pacman -Sy # Normally not advisable, but we'll do a full -Syu before finishing
|
|
|
|
mkdir -p ~/.local/state/omarchy/migrations
|
|
touch ~/.local/state/omarchy/migrations/1751134560.sh
|
|
|
|
# Remove Zoom/qt5-remoteobjects to prevent a super lengthy build on old Omarchy installs
|
|
sudo pacman -Rns --noconfirm zoom qt5-remoteobjects
|
|
|
|
# Get rid of old AUR packages
|
|
bash $OMARCHY_PATH/migrations/1756060611.sh
|
|
touch ~/.local/state/omarchy/migrations/1756060611.sh
|
|
|
|
bash omarchy-update-perform
|