mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00
11 lines
405 B
Bash
Executable File
11 lines
405 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if gum confirm "Refresh Waybar config? This will replace your current settings with Omarchy defaults."; then
|
|
# Overwrite local waybar settings with the latest in Omarchy
|
|
cp -f ~/.local/share/omarchy/config/waybar/config.jsonc ~/.config/waybar/ 2>/dev/null
|
|
cp -f ~/.local/share/omarchy/config/waybar/style.css ~/.config/waybar/ 2>/dev/null
|
|
|
|
# Restart waybar
|
|
pkill -SIGUSR2 waybar
|
|
fi
|