Files
omarchy/bin/omarchy-refresh-waybar

12 lines
430 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.jsonc ~/.config/waybar/ 2>/dev/null
2025-07-09 18:21:31 -07:00
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
2025-07-09 18:21:31 -07:00
# Restart waybar
pkill waybar
setsid waybar >/dev/null 2>&1 &
fi