mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
14 lines
350 B
Bash
14 lines
350 B
Bash
echo "Replace wofi with walker as the default launcher"
|
|
|
|
if ! command -v walker &>/dev/null; then
|
|
yay -Sy --noconfirm --needed walker-bin libqalculate
|
|
|
|
yay -Rns --noconfirm wofi
|
|
rm -rf ~/.config/wofi
|
|
|
|
mkdir -p ~/.config/walker
|
|
cp -r ~/.local/share/omarchy/config/walker/* ~/.config/walker/
|
|
|
|
uwsm app -- walker --gapplication-service &
|
|
fi
|