2025-07-15 19:22:27 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2025-07-16 07:11:36 -07:00
|
|
|
if [[ "$1" == "-y" ]] || gum confirm "Refresh Wofi config? This will replace your current settings with Omarchy defaults."; then
|
2025-07-15 19:22:27 -07:00
|
|
|
# Overwrite local waybar settings with the latest in Omarchy
|
|
|
|
cp -f ~/.local/share/omarchy/config/wofi/config ~/.config/wofi/ 2>/dev/null
|
|
|
|
cp -f ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/ 2>/dev/null
|
2025-07-16 07:11:36 -07:00
|
|
|
cp -f ~/.local/share/omarchy/config/wofi/select.css ~/.config/wofi/ 2>/dev/null
|
2025-07-15 19:22:27 -07:00
|
|
|
fi
|