From 2d1e6d0e6940d3b2d80c8bbac1aad9df5094f6e7 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 15 Jul 2025 19:22:27 -0700 Subject: [PATCH] Add way to refresh wofi settings --- bin/omarchy-refresh-wofi | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/omarchy-refresh-wofi diff --git a/bin/omarchy-refresh-wofi b/bin/omarchy-refresh-wofi new file mode 100755 index 0000000..a4ec6c8 --- /dev/null +++ b/bin/omarchy-refresh-wofi @@ -0,0 +1,7 @@ +#!/bin/bash + +if gum confirm "Refresh Wofi config? This will replace your current Wofi settings with Omarchy defaults."; then + # 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 +fi