feat(audit): address batch 2 of missing scripts

- Implement nomarchy-version, nomarchy-debug, nomarchy-reinstall, nomarchy-rollback, nomarchy-upload-log
- Implement nomarchy-refresh-hyprland and nomarchy-refresh-waybar
- Update docs/SCRIPTS.md with 'kept' status for new scripts
This commit is contained in:
Bernardo Magri
2026-04-25 22:36:19 +01:00
parent 0728da4374
commit 074dc3576c
8 changed files with 183 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Nomarchy Refresh Waybar Script
# Restarts Waybar to apply new configuration or theme.
set -e
if command -v nomarchy-restart-waybar &>/dev/null; then
nomarchy-restart-waybar
notify-send -u low "󰍜 Waybar refreshed"
else
echo "Error: nomarchy-restart-waybar not found."
exit 1
fi