mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
8 lines
345 B
Bash
Executable File
8 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if gum confirm "Refresh Wofi 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/wofi/config ~/.config/wofi/ 2>/dev/null
|
|
cp -f ~/.local/share/omarchy/config/wofi/style.css ~/.config/wofi/ 2>/dev/null
|
|
fi
|