mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-09 12:37:46 +00:00
* Get rid of -Sy and -Syy * Get rid of all naked -Sy usage * Don't need a full system update for this * Combine * Does not need a full system update * Need to refresh even just for Omarchy repository * Does not warrant a full system update * No longer need the sudoless pacman runs * We have already added the Omarchy repo before getting to here So fine to just do a straight install
12 lines
318 B
Bash
12 lines
318 B
Bash
echo "Replace wofi with walker as the default launcher"
|
|
|
|
if ! command -v walker &>/dev/null; then
|
|
sudo pacman -S --noconfirm --needed walker-bin libqalculate
|
|
|
|
sudo pacman -Rns --noconfirm wofi
|
|
rm -rf ~/.config/wofi
|
|
|
|
mkdir -p ~/.config/walker
|
|
cp -r ~/.local/share/omarchy/config/walker/* ~/.config/walker/
|
|
fi
|