#!/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"
