- 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
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Nomarchy Version Script
|
|
# Prints the current Nomarchy version based on the upstream NixOS channel.
|
|
|
|
VERSION="25.11.0"
|
|
CODENAME="Markhor"
|
|
|
|
echo "Nomarchy v${VERSION} (${CODENAME})"
|