Files
omarchy/bin/omarchy-refresh-waybar

11 lines
399 B
Plaintext
Raw Normal View History

#!/bin/bash
if gum confirm "Refresh Waybar config? This will replace your current settings with Omarchy defaults."; then
2025-07-09 18:21:31 -07:00
# Overwrite local waybar settings with the latest in Omarchy
cp -f ~/.local/share/omarchy/config/waybar/config ~/.config/waybar/ 2>/dev/null
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
2025-07-09 18:21:31 -07:00
# Restart waybar
2025-07-16 07:42:04 -07:00
pkill -SIGUSR2 waybar
fi