- Implement nomarchy-skill, nomarchy-manual, nomarchy-backup, nomarchy-install - Implement nomarchy-install-docker-dbs (stub) - Port nomarchy-docs-keybindings and nomarchy-docs-scripts to packaged scripts - Add installerVm to flake.nix nixosConfigurations, packages, and apps - Update nomarchy-test-installer to use nix run .#installerVm - Add docker support to virtualization.nix and options.nix - Add glow to script dependencies - Finalize docs/SCRIPTS.md update
10 lines
209 B
Bash
Executable File
10 lines
209 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Nomarchy Manual Script
|
|
# Opens the Nomarchy manual in the default web browser.
|
|
|
|
URL="https://learn.omacom.io/2/the-nomarchy-manual"
|
|
|
|
echo "Opening Nomarchy manual: $URL"
|
|
xdg-open "$URL"
|